I have two dependents that both depent on two variables AND on each other, can this be modelled in R (must be!) but I can't figure out how, anyone a hint?
In clear terms:
I want to model my data with the following model:
Y1=X1*coef1+X2*coef2
Y2=X1*coef2+X2*coef3
Note: coef2 appears in both lines Xi, Yi is input and output data respectively
I got this far:
lm(Y1~X1+X2,mydata)
now how do I add the second line of the model including the cross dependency?
Your help is greatly appreciated! Cheers, Bastiaan
lm(cbind(Y1, Y2) ~ X1 + X2, mydata)which is equivalent to doing both regressions separately without constraining two weights to be equal. You may have to look into structural equation modeling. Packagessem,lavaan, andOpenMxwill get you further. You can also look into cran.r-project.org/doc/contrib/Fox-Companion/appendix-sems.pdf – caracal Dec 17 '10 at 22:04