I'm trying to conduct a multivariate multiple regression analysis. Fortunately, I've found an excellent page demonstrating how to do so in Stata:
http://www.ats.ucla.edu/stat/stata/dae/mvreg.htm
The issue is that I'm using R, while I've figured out how to do the basics of running a multivariate multiple regression model in R, I'm still not sure how to see if coefficients are different for each dependent variable (as shown in the link). Does anyone know how to compute this analysis in R? Seems like seeing if the same independent variable exerts different effects on each dependent variable is an incredibly useful tool, and I'd love to be able to do it!
UPDATE: Here is a reproducible example of what I've done with my own data thus far:
# data
data(mtcars)
# fitting a multivariate multiple regression where mpg and cyl are predicted by wt and hp
car.mod <- lm(cbind(mpg,cyl) ~ wt + hp,data=mtcars)
# see if there is a multivariate effect of wt and hp
summary(manova(car.mod),test="W")
# Get coefficients for each dependent variable
summary(car.mod)
What I want to know in this example is how I can test the equivalence of "wt" on both "mpg" and "cyl". Apparently, this is possible in Stata using the test
command.