I am fitting a logistic growth model using menl with the following code.
menl DSS = {k:}/(1+exp(-{r:}*(Day-{d:}))), define(k: i.Group Uk[MID]) define(d: i.Group Ud[MID]) define(r: i.Group) rescorr(ctar1 , t(Day) group(MID)) covariance(Uk Ud, unstructured)
All is good in the model fitting but I would like to get predictions with the random effect terms = 0, i.e. using only the fitted fixed effects. Some SAS mixed effect procedures offer a NoBLUP option, I am looking for something similar here.
I would accept the margins, but margins i.Group, at(Day= (0 5(2)15 19(2)2 28(2)42)) does not return a result, at least in the 30 minutes I have waited for it.
Any suggestions?
menl DSS = {k:}/(1+exp(-{r:}*(Day-{d:}))), define(k: i.Group Uk[MID]) define(d: i.Group Ud[MID]) define(r: i.Group) rescorr(ctar1 , t(Day) group(MID)) covariance(Uk Ud, unstructured)
All is good in the model fitting but I would like to get predictions with the random effect terms = 0, i.e. using only the fitted fixed effects. Some SAS mixed effect procedures offer a NoBLUP option, I am looking for something similar here.
I would accept the margins, but margins i.Group, at(Day= (0 5(2)15 19(2)2 28(2)42)) does not return a result, at least in the 30 minutes I have waited for it.
Any suggestions?
Comment