如果我以不明确的方式发布问题,我会对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)
该模型有效,情节显示正常,但如上所述,我需要添加错误条 - 这就是我被卡住的地方。
到目前为止,我无法在任何地方找到这个问题的答案,所以任何帮助都会非常感激。 谢谢! CATA
数据示例:
SUBJECT SENTENCE_ID IA_FIRST_RUN_DWELL_TIME语义同义词
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 inong cong
s25 3115 154 inong cong
s2 3116 472 incong cong
s11 4116 259 inong incong
s13 4116 401 incong incong
s14 4116 729 incong incong