search for: exp11b

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

2004 Apr 23
0
Sum Sq of SPSS and R different for repeated measures Anova
...n-SS factors (2 x 2, 4 means per subjects). One experiment had 16 subjects, the other one 25 (between-SS factor exp). So I have something like: avg.cond <- read.table('data.txt') # data set attached as text. avg.cond[1:5,] # pp pictcat cond rt exp #1 1 animal con 517.8125 exp11b #2 2 animal con 425.9375 exp11b #3 3 animal con 379.6563 exp11b #4 4 animal con 410.6563 exp11b #5 5 animal con 420.3125 exp11b Then I do the anova: summary(taov <- aov(rt~exp*pictcat*cond+Error(pp/(pictcat*cond)), data=subset(avg.cond, cond=='con'|cond=='incon')))...