Describe Priors
Returns a summary of the priors used in the model.
describe_prior(model, ...)
model |
A Bayesian model. |
... |
Currently not used. |
## Not run:
library(bayestestR)
# rstanarm models
# -----------------------------------------------
if (require("rstanarm")) {
model <- rstanarm::stan_glm(mpg ~ wt + cyl, data = mtcars)
describe_prior(model)
}
# brms models
# -----------------------------------------------
if (require("brms")) {
model <- brms::brm(mpg ~ wt + cyl, data = mtcars)
describe_prior(model)
}
# BayesFactor objects
# -----------------------------------------------
if (require("BayesFactor")) {
bf <- ttestBF(x = rnorm(100, 1, 1))
describe_prior(bf)
}
## End(Not run)Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.