0

作为 R 的新手,也是这个论坛的新手,如果我以不清楚的方式发布问题,我深表歉意。

我正在使用 lme4 运行线性混合模型。模型本身有效,我的问题是用 plotLMER 绘制它的输出,因为我需要用误差线添加平均值的标准误差,但找不到方法。到目前为止,我的代码是(数据添加在下面):

read.table("data.txt", header=T) -> data
library(lme4)
m1 <- lmer(log(IA_FIRST_RUN_DWELL_TIME) ~ SEMANTIC*SYNTACTIC + (1|SUBJECT) + (1|SENTENCE_ID), data=data);

library(languageR)
plotLMER.fnc(m1, fun=exp, ylab='Dwell time (ms)', pred='SEMANTIC', lwd=3, font= 2, 
         font.lab= 2, xlabs = 2, linecolor = 3:5, 
         intr=list('SYNTACTIC', c('cong','incong'), 'end'),addlines=T) 

该模型有效并且情节显示良好,但是,如前所述,我需要为其添加误差线 - 这就是我卡住的地方。

到目前为止,我无法在任何地方找到这个问题的答案,所以非常感谢任何帮助。谢谢!卡塔

Example of the data:
SUBJECT SENTENCE_ID IA_FIRST_RUN_DWELL_TIME SEMANTIC SYNTACTIC
s1 1101 334 cong cong
s3 1101 755 cong cong
s5 1101 237 cong cong
s10 2105 127 cong incong
s11 2105 298 cong incong
s13 2105 190 cong incong
s23 3115 238 incong cong
s25 3115 154 incong cong
s2 3116 472 incong
s11 4116 259 incong
s13 4116 401 incong incong
s14 4116 729 incong incong

4

0 回答 0