Displaying 1 result from an estimated 1 matches for "results_ezanova".
2010 Oct 19
2
ANOVA stuffs_How to save each result from FOR command?
...ple question, but definitely difficult to solve it by
myself.
I'd like to see main effect of group(gender: sample size is
different(M:F=23:18) and one of condition(cond) and the interaction at each
subset from 90 datasets
So I perform anova 90 times using a command like below;
for(i in 1:90) {results_ezANOVA = ezANOVA(data=subset(ast.ast_coef,
ast.ast_coef$coef_thr==i), dv=.(ast.values), between=.(gender), wid=.(subj),
within=.(cond))}
But I got the last(90th) result, not all.
Here are my questions.
1) Is my command correct?
2) If correct, please let me know if I can get all 90 results.
3) What kind...