Sensitivity to Prior
Computes the sensitivity to priors specification. This represents the proportion of change in some indices when the model is fitted with an antagonistic prior (a prior of same shape located on the opposite of the effect).
sensitivity_to_prior(model, index = "Median", magnitude = 10, ...)
model |
A Bayesian model ( |
index |
The indices from which to compute the sensitivity. Can be one or multiple names of the columns returned by |
magnitude |
This represent the magnitude by which to shift the antagonistic prior (to test the sensitivity). For instance, a magnitude of 10 (default) means that the mode wil be updated with a prior located at 10 standard deviations from its original location. |
... |
Arguments passed to or from other methods. |
DescTools
## Not run: library(bayestestR) # rstanarm models # ----------------------------------------------- if (require("rstanarm")) { model <- rstanarm::stan_glm(mpg ~ wt, data = mtcars) sensitivity_to_prior(model) model <- rstanarm::stan_glm(mpg ~ wt + cyl, data = mtcars) sensitivity_to_prior(model, index = c("Median", "MAP")) } # brms models # ----------------------------------------------- if (require("brms")) { model <- brms::brm(mpg ~ wt + cyl, data = mtcars) # sensitivity_to_prior(model) } ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.