Summarizes posterior draws based on point estimates (mean or median), estimation errors (SD or MAD) and quantiles. This function mainly exists to retain backwards compatibility. It will eventually be replaced by functions of the posterior package (see examples below).
An R object.
More arguments passed to or from other methods.
The percentiles to be computed by the
quantile
function.
If FALSE
(the default) the mean is used as
the measure of central tendency and the standard deviation as
the measure of variability. If TRUE
, the median and the
median absolute deviation (MAD) are applied instead.
Deprecated alias of variable
. For reasons of backwards
compatibility, pars
is interpreted as a vector of regular
expressions by default unless fixed = TRUE
is specified.
A character vector providing the variables to extract. By default, all variables are extracted.
A matrix where rows indicate variables and columns indicate the summary estimates.
if (FALSE) {
fit <- brm(time ~ age * sex, data = kidney)
posterior_summary(fit)
# recommended workflow using posterior
library(posterior)
draws <- as_draws_array(fit)
summarise_draws(draws, default_summary_measures())
}