search for: response7

Displaying 1 result from an estimated 1 matches for "response7".

Did you mean: responses
2007 Apr 18
0
Specifying ANCOVA models in R
...on is an ANCOVA design(?) I can fit this model in MINITAB using, say: glm response = cluster; covariate predictor1 predictor2 ... predictor7. In R, if I specify the model using cluster<-ordered(clusterlevels=c("Low","High")) Model<-lm(predictor~response1+response2+ ... response7+cluster) I can replicate the results from MINITAB, getting identical P and t values when I do summary(lm(Model)), but the F values are all different (huge) when I do summary(aov(Model)) for all correlates. The F value for the fixed effect is correct. The P values for summary(aov(Model)) are all hi...