Hello all,
I have run a repeated-measures ANOVA below:
ANOVAtest <- anova_test(data=Book19,
formula=Proportionofcorrecttrials~Condition*Firsttargetboundary,
dv=Proportionofcorrecttrials, wid=ID,within=c(Condition,Firsttargetboundary))
I have then tried to check the sphericity assumption by entering the following command:
get_anova_table(ANOVAtest, correction = c("auto"))`
However, the output produced is this:
Which is fine, except that it is not displaying the results from the test for sphericity?
What am I doing wrong?