rstanarm 之前的位置必须大于0

rstanarm Prior location must be greater than 0

我正在尝试使用分层收缩先验在 rstanarm 中拟合线性模型。但是,我确实收到一条错误消息,指出先验位置必须大于 0。

Error: location > 0 is not TRUE

我有点惊讶,因为 hs() 先验没有位置参数。我尝试使用标准正态先验拟合相同的模型,但我得到了同样的错误,这对我来说没有多大意义,因为 0 居中先验是默认选项。

我查看了 github 存储库中的 stan_lm.R and stan_lm.fit.R 文件,但未能找到此错误的根源。

下面我包含了复制错误的代码,请注意本例中先验的选择可能不是很充分,但这段代码的唯一目的是说明我遇到的错误:

library(rstanarm)
library(tidyverse)
library(MASS)
nObs <- 400
x <- mvrnorm(n = nObs, mu = c(0, 0, 0),
             diag(c(0.5, 1, 2)))
y <- (x %*% c(0.3, 0.4, 0.5)) + rnorm(n = nObs, 0, 1)
fullData <- cbind(y, x) %>% as.data.frame

model0 <- stan_lm(y ~ -1 + x, data = fullData,
                  prior = normal(location = 0, scale = 1))
model1 <- stan_lm(y ~ -1 + x, data = fullData,
                  prior = hs(df = 1, global_df = 1, global_scale = 0.01,
                             slab_df = 4, slab_scale= 2.5))

尝试使用 stan_glm 来拟合您的正常线性模型。 stan_lm 函数需要在 R^2 上指定先验,而不是回归系数 - 因此位置必须 >0。

有关详细信息,请参阅 stan_lmprior 参数的文档。