我过去曾让 R 通过两个变量之间的交互来执行 aov,但是我现在无法让它这样做。
代码:
x.aov <- aov(thesis_temp$`Transformed Time to Metamorphosis` ~ thesis_temp$Sex + thesis_temp$Mature + thesis_temp$Sex * thesis_temp$Mature)
输出:
Df Sum Sq Mean Sq F value Pr(>F)
thesis_temp$Sex 1 0.000332 0.0003323 1.370 0.2452
thesis_temp$Mature 1 0.000801 0.0008005 3.301 0.0729 .
Residuals 82 0.019886 0.0002425
我希望它还包括 Sex x Mature 交互,但它不会产生这个。关于如何让 R 也进行交互分析的任何建议?