simulate_prior {bayestestR} | R Documentation |
Returns Priors of a Model as Empirical Distributions
Description
Transforms priors information to actual distributions.
Usage
simulate_prior(model, n = 1000, ...)
Arguments
model |
A |
n |
Size of the simulated prior distributions. |
... |
Currently not used. |
See Also
unupdate()
for directly sampling from the prior
distribution (useful for complex priors and designs).
Examples
library(bayestestR)
if (require("rstanarm")) {
model <- suppressWarnings(
stan_glm(mpg ~ wt + am, data = mtcars, chains = 1, refresh = 0)
)
simulate_prior(model)
}
[Package bayestestR version 0.14.0 Index]