用于R中双向ANOVA的tukeys HSD tets

时间:2016-03-16 06:50:29

标签: r anova

我一直使用双向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

有人可以帮帮我吗?

0 个答案:

没有答案