Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug with "min" instead of "time" in column names of input data #2

Open
marcusrosenblatt opened this issue May 6, 2021 · 1 comment

Comments

@marcusrosenblatt
Copy link
Collaborator

In the following, the first version works, the second one gives an error.

`mydata3 <- mydata_test
colnames(mydata3) <- c("Experiment", "Condition", "time", "name", "value")
avData3 <- align_me(
data = mydata3,
model = "yi / sj",
error_model = "value * sigmaR",
distinguish = yi ~ name + time + Condition,
scaling = sj ~ name + Experiment,
error = sigmaR ~ name + 1,
parameter_fit_scale = "linear",
normalize = TRUE,
average_techn_rep = FALSE,
names_as_factors = TRUE,
verbose = FALSE,
normalize_input = TRUE
)

mydata3 <- mydata_test
colnames(mydata3) <- c("Experiment", "Condition", "min", "name", "value")
avData3 <- align_me(
data = mydata3,
model = "yi / sj",
error_model = "value * sigmaR",
distinguish = yi ~ name + min + Condition,
scaling = sj ~ name + Experiment,
error = sigmaR ~ name + 1,
parameter_fit_scale = "linear",
normalize = TRUE,
average_techn_rep = FALSE,
names_as_factors = TRUE,
verbose = FALSE,
normalize_input = TRUE
)
`

@SeverinBang
Copy link
Owner

Could you provide the error message?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants