Hi, I have problem getting the standard deviation from the manova output. I have used the manova function: myfit <- manova(cbind(y1, y2) ~ x1 + x2 + x3, data=mydata) . I tried to get the predicted values and their standard deviation by using: predict(myfit, type="response", se.fit=TRUE)
But the problem is that I don't get the standard deviation values, I only get the predicted values for y1 and y2. But if I type: predict*.lm*(myfit, type="response", se.fit=TRUE) I get the predicted values and standard deviation, but only for y1 (and nothing from y2...). //BF -- View this message in context: http://r.789695.n4.nabble.com/Standard-deviation-from-MANOVA-tp4641322.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.