Skip to content
Prev 178219 / 398506 Next

Interpreting the results of Friedman test

doerte.apelt at gmx.de wrote:
The .R file came as BIN file to me, so r-help may be missing it.

Anyways, Friedman's test is a replacement for a two-way ANOVA and you
are comparing it to a one-way analysis, and the latter is likely just wrong.

Try

anova(lm(AUC~as.factor(Condition)+as.factor(Observer),data=dataForANOVA))

or, maybe better

summary(aov(AUC ~ as.factor(Condition) + Error(as.factor(Observer) /
as.factor(Condition)),  data=dataForANOVA))