I am trying to fit a nonlinear mixed effect model in R. I am doing this step by step to make it easier to find the starting values for my model. It looks like this:
fit.nlme.10<-nlme(fit.beta.10, random=pdDiag(w.max ~1))
cfs <- fixef(fit.nlme.10)
fit.nlme2 <- update(fit.nlme.10, fixed = list(w.max ~ trt, t.e + t.m ~ 1),
start = c(cfs[1], rep(0,2), cfs[2:3]))
cfsT <- fixef(fit.nlme2)
fit.nlme3 <- update(fit.nlme.10, fixed = list(w.max ~ ground, t.e + t.m ~ 1),
start = c(cfs[1], rep(0,1), cfs[2:3]))
cfsG <- fixef(fit.nlme3)
fit.nlme4 <- update(fit.nlme.10, fixed = list(w.max ~ trt + ground, t.e + t.m ~ 1),
start = c(cfsT2[1:3], cfsG2[1:2], cfs[2:3]))
The idea is to use the coefficients of the previous fits for starting values as the model gets more complex. I have successfully done this before, but never completely understood it. I often get the error message "starting values for the fixed component are not the correct length". I spend a lot of time playing around with the lengths until I don't the error message anymore.
Can anyone explain to me how I can know what the correct length is from the beginning?
Sorry not to attach data, but to run this you would also need some lengthy custom functions.