Post hoc tests with ezANOVA output
问题 I tried to use TukeyHSD(my_anova$aov) but it gives an error: Error in UseMethod("TukeyHSD") : no applicable method for 'TukeyHSD' applied to an object of class "c('aovlist', 'listof')" Google says that there is no way to post hoc with 'aovlist'. But maybe you have any idea about post hoc with ezANOVA output. Example: require(ez) data(ANT) rt_anova = ezANOVA(data = ANT[ANT$error==0,], dv = rt, wid = subnum, within = cue,return_aov = TRUE) Try to use multcomp: require(multcomp) glht(my_anova