0

当我使用 stan_glm() 时,我不知道如何更改间隔。

我的代码:

mod_rstan <- stan_glm(
    formula = f,
    data = dat,
    family = gaussian(), 
    prior_intercept = normal(0, 10),
    prior = normal(0, 2.5),
    prior_aux = cauchy(0, 5),
    cores = 3,
    chains = 3,
    iter = 2000)
     s_rstan <- summary(mod_rstan)

我得到如下图所示的结果: 在此处输入图片描述

我们如何将间隔从 10% 更改为 2.5%,另一个从 90% 更改为 97.5%?

4

1 回答 1

1

系数的可信区间的估计是在summary调用中执行的,而不是在stan_glm调用中执行的。probs您可以使用参数,调整间隔的宽度summary(example_model, probs = c(0.025, 0.975))

于 2020-12-15T12:59:28.950 回答