Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
1  
Maybe this? – EDi Dec 23 '12 at 21:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.