我对 R 很陌生,在阅读了几个搜索结果后,仍然无法弄清楚如何从 R 中的线性模型检验不同的假设。我有 3 个重复,每个重复来自 3 个图(处理)。我想检验假设 P2 > (P1+P3)/2,其中 rep 作为阻塞因子 (rcbd),没有 rep 作为阻塞因子 (crd)。
我认为 rcbd crd 可以拟合 lhe 线性
lm(resp ~ factor(plot) + factor(rep), data=pheno)
模型
lm(resp ~ factor(plot), data=pheno)
如何检验假设 P2 > (P1+P3)/2(P 代表情节)?
pheno
rep plot resp
R1 P1 12.6
R2 P1 11.9
R3 P1 12.3
R1 P2 13.0
R2 P2 12.4
R3 P2 12.4
R1 P3 11.3
R2 P3 11.9
R3 P3 10.9