I am performing a mixed model with nlme
package in R. My situation is:
The mixed model is:
MY = DFC + DFC2, random=~DFC|Animal, data=my_data)
where Animal
is the random effect.
However, if I write the model like this, I can only obtain random intercept, and slope for DFC
(by Animal
), but not DFC2
.
I would like to have also the random slope (by Animal
) for DFC2
!
Could you please help me?
Thank you very much,