我是新来的,我试着运行一个lmer模型:
lmer = lmer(RI ~ SET + LOG_VP + (1|API) + (1|ODOUR), data = a)有人能帮我解释一下输出吗?
Linear mixed model fit by REML ['lmerMod']
Formula: RI ~ SET + LOG_VP + (1 | API) + (1 | ODOUR)
Data: a
REML criterion at convergence: -349.9
Scaled residuals:
Min 1Q Median 3Q Max
-2.6167 -0.4719 -0.0357 0.5053 8.4850
Random effects:
Groups Name Variance Std.Dev.
API (Intercept) 0.01431 0.11964
ODOUR (Intercept) 0.00415 0.06442
Residual 0.00778 0.08820
Number of obs: 238, groups: API, 34; ODOUR, 14
Fixed effects:
Estimate Std. Error t value
(Intercept) 0.15716 0.08792 1.787
SET 0.08180 0.05490 1.490
LOG_VP 0.03527 0.01968 1.792
Correlation of Fixed Effects:
(Intr) SET
SET -0.950
LOG_VP 0.083 -0.049谢谢!
发布于 2022-02-21 09:42:49
这取决于你的研究问题是什么,但是
当两个固定效应都为零时,响应为0.15716
RI中的
SET中的0.08180变化有关RI中的
LOG_VP中的0.03527变化有关API水平上的方差为0.01431ODOUR水平上的方差为0.00415https://stackoverflow.com/questions/71188644
复制相似问题