我一直使用双向ANOVA和Tukey HSD测试分析我在R中的数据。我正在寻找温度和性别对开发时间的影响。我能够进行双因素方差分析但是在事后检验方面存在问题。 我使用了以下代码:
a <- aov(larval.time~temp*sex, mydata=R.data) #for two way anova
TukeyHSD(a) #for post hoc test
我收到了关于post hoc代码的以下错误消息:
Error in rep.int(n, length(means)) : unimplemented type 'NULL' in 'rep3'
另外:
Warning messages:
1: In replications(paste("~", xx), data = mf) : non-factors ignored: Temp
2: In replications(paste("~", xx), data = mf) : non-factors ignored: Temp, sex
有人可以帮帮我吗?