我想使用 R 中的bayestestR
and执行贝叶斯逻辑回归rstanarm
。我相信输出在log(odds ratio)中。您是否知道我可以将所有内容(即中心性、不确定性、存在性和显着性指标)转换为优势比的方法。我知道包中的tbl_summary
函数gtsummary
有一个参数,exponentiate = TRUE
它返回 OR 中的所有内容。
代码:
library(rstanarm)
library(bayestestR)
data <- iris %>%
filter(Species != "setosa") %>%
droplevels()
model <- stan_glm(Species ~ Sepal.Width, data = data, family = "binomial", refresh = 0)
describe_posterior(model)
# Summary of Posterior Distribution
#
# Parameter | Median | 95% CI | pd | ROPE | % in ROPE | Rhat | ESS
# ---------------------------------------------------------------------------------------------
# (Intercept) | -6.16 | [-10.46, -2.30] | 99.95% | [-0.18, 0.18] | 0% | 1.001 | 2842.00
# Sepal.Width | 2.15 | [ 0.83, 3.64] | 99.92% | [-0.18, 0.18] | 0% | 1.001 | 2799.00