我用 lmerTest 运行了一个混合模型,我需要一个事后测试。
以下是模型,每个试验连续。然后,我使用 emmeans 但得到以下错误(可能是因为大量的观察)。
我会很感激帮助或以其他方式运行后挂钩,因为我尝试过的其他方式也不起作用。PS当我尝试添加参数'lmerTest.limit = 13812'时它根本不起作用。
lmerTest :: lmer (RT ~ condition * pronoun * objectification_center +
(1+ pronoun| subject_ID),
data = data)```
emm1 = emmeans(mixed_model_RT_comp, specs = pairwise ~ condition:pronoun)
Note: D.f. calculations have been disabled because the number of observations exceeds 3000.
To enable adjustments, add the argument 'pbkrtest.limit = 13812' (or larger)
[or, globally, 'set emm_options(pbkrtest.limit = 13812)' or larger];
but be warned that this may result in large computation time and memory use.
Note: D.f. calculations have been disabled because the number of observations exceeds 3000.
To enable adjustments, add the argument 'lmerTest.limit = 13812' (or larger)
[or, globally, 'set emm_options(lmerTest.limit = 13812)' or larger];
but be warned that this may result in large computation time and memory use.
NOTE: Results may be misleading due to involvement in interactions```