Displaying 1 result from an estimated 1 matches for "results_lmanova".
Did you mean:
results_ezanova
2010 Oct 20
1
Please help: ANOVA with SS Type III for unequal sample sized data
..., I have to do anova 90 times)
*
1. Question about constrast stuff for type III*
After googling, I found a document (
https://stat.ethz.ch/pipermail/r-help/2001-October/015889.html) and it
looked like make sense.
This below is what I did on R and I encountered 'error message'.
library(car)
results_lmanova <- list()
for(i in 1:90) {sum=subset(ast.ast_coef, ast.ast_coef$coef_thr==i)
results_lmanova[[i]] <- anova(lm(sum$ast.values ~ sum$gender
* sum$cond,
contrasts=list(sum$gender='contr.sum',
sum$cond='contr.sum'),...