我目前正在努力解决如何按照 APA-6 的建议报告rstanarm::stan_lmer()
.
首先,我将在频率论方法中拟合一个混合模型,然后尝试使用贝叶斯框架来做同样的事情。
这是获取数据的可重现代码:
library(tidyverse)
library(neuropsychology)
library(rstanarm)
library(lmerTest)
df <- neuropsychology::personality %>%
select(Study_Level, Sex, Negative_Affect) %>%
mutate(Study_Level=as.factor(Study_Level),
Negative_Affect=scale(Negative_Affect)) # I understood that scaling variables is important
现在,让我们以“传统”方式拟合一个线性混合模型,以研究水平(受教育年限)作为随机因素来测试性别(男性/女性)对负面影响(消极情绪)的影响。
fit <- lmer(Negative_Affect ~ Sex + (1|Study_Level), df)
summary(fit)
输出如下:
Linear mixed model fit by REML t-tests use Satterthwaite approximations to degrees of
freedom [lmerMod]
Formula: Negative_Affect ~ Sex + (1 | Study_Level)
Data: df
REML criterion at convergence: 3709
Scaled residuals:
Min 1Q Median 3Q Max
-2.58199 -0.72973 0.02254 0.68668 2.92841
Random effects:
Groups Name Variance Std.Dev.
Study_Level (Intercept) 0.04096 0.2024
Residual 0.94555 0.9724
Number of obs: 1327, groups: Study_Level, 8
Fixed effects:
Estimate Std. Error df t value Pr(>|t|)
(Intercept) 0.01564 0.08908 4.70000 0.176 0.868
SexM -0.46667 0.06607 1321.20000 -7.064 2.62e-12 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Correlation of Fixed Effects:
(Intr)
SexM -0.149
为了报告它,我会说“我们拟合了一个线性混合模型,其中负面影响作为结果变量,性别作为预测变量,研究水平作为随机效应输入。在这个模型中,男性水平导致负面影响显着减少(β = -0.47,t(1321)=-7.06,p < .001)。
那是对的吗?
然后,让我们尝试使用以下方法将模型拟合到贝叶斯框架中rstanarm
:
fitB <- stan_lmer(Negative_Affect ~ Sex + (1|Study_Level),
data=df,
prior=normal(location=0, scale=1),
prior_intercept=normal(location=0, scale=1),
prior_PD=F)
print(fitB, digits=2)
这将返回:
stan_lmer
family: gaussian [identity]
formula: Negative_Affect ~ Sex + (1 | Study_Level)
------
Estimates:
Median MAD_SD
(Intercept) 0.02 0.10
SexM -0.47 0.07
sigma 0.97 0.02
Error terms:
Groups Name Std.Dev.
Study_Level (Intercept) 0.278
Residual 0.973
Num. levels: Study_Level 8
Sample avg. posterior predictive
distribution of y (X = xbar):
Median MAD_SD
mean_PPD 0.00 0.04
------
For info on the priors used see help('prior_summary.stanreg').
我认为比median
是系数后验分布的中位数和mad_sd
标准偏差的等价物。这些参数接近常客模型的 beta 和标准误差,这是令人放心的。但是,我不知道如何将输出形式化并用文字表达。
此外,如果我对模型 ( summary(fitB, probs=c(.025, .975), digits=2)
) 进行总结,我会得到后验分布的其他特征:
...
Estimates:
mean sd 2.5% 97.5%
(Intercept) 0.02 0.11 -0.19 0.23
SexM -0.47 0.07 -0.59 -0.34
...
像下面这样的东西好吗?
“我们在贝叶斯框架内拟合了一个线性混合模型,其中负面影响作为结果变量,性别作为预测变量,研究水平作为随机效应输入。系数和截距的先验设置为正常(平均值 = 0,标准差 = 1 ). 在该模型中,与男性水平相关的系数的后验分布特征表明负面影响减少(平均值 = -0.47,标准差 = 0.11,95% CI[-0.59,-0.34])。
谢谢你的帮助。