I would like to fit my data with two response variables including: Energy and Nitrogen (as the responses) vs DMI and MY (as predictors) and Study as a random effect.
Of course I could fit them separately using lme/lmer functions. But I would like to fit them simultaneously.
The separate functions could be:
fm1<-lme(Energy~DMI+MY,random=~1|Study,data=phuong)
fm2<-lme(Nitrogen~DMI+MY,random=~1|Study,data=phuong)
How can I fit them simultaneously in R? Thanks!