我有一个混合模型,包含响应变量(resp),两个固定效果(fix1和fix2)和一个随机因子(ran1)。特别是:
我正在使用的数据类型的一个例子是
library("tidyr")
library("dplyr")
set.seed(123)
DF <- data.frame(resp = rnorm(84, -2, 1),
fix1 = c(rep("C",42),rep("Trt",42)),
fix2 = c(rep("1",6),rep("2",6),rep("3",6),rep("4",6),rep("5",6),rep("6",6),rep("7",6),
rep("1",6),rep("2",6),rep("3",6),rep("4",6),rep("5",6),rep("6",6),rep("7",6)),
ran1 = c(rep(1:6,14)))
DF
从上面的例子可以看出:
在包含fix1和fix2之间的交互的混合模型中,
LME <- lmer(resp ~ fix1 * fix2 + (1 | ran1), DF)
我想比较(对于fix2):
我的问题是: