Displaying 1 result from an estimated 1 matches for "particid".
Did you mean:
partici
2007 Mar 07
0
Two-way Unbalanced multiple sample ANOVA
...80
So participant 2 never took test1 using our system.
Anyway, I want to look to see if our new study method had an impact one
test results. Also, I want to see if the test number had an impact on
the exam results.
Here is some sample data:
------------
>dataSet <- data.frame(
particID=factor(c(1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8)),
whichExam=factor(c(1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2)),
studyMethod=factor(c(1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1)),
score=c(90,80,75,70,70,58,73,68,69,87,68,79,80,80,99,95))
------------
From what I have read this should be how to compute and ANOV...