All tidying methods return a data.frame
without rownames.
The structure depends on the method chosen.
When parameters = NA
, the par_type
argument is used
to determine which parameters to summarize.
Generally, tidy.brmsfit
returns
one row for each coefficient, with at least three columns:
termThe name of the model parameter.
estimateA point estimate of the coefficient (mean or median).
std.errorA standard error for the point estimate (sd or mad).
When par_type = "non-varying", only population-level
effects are returned.
When par_type = "varying", only group-level effects are returned.
In this case, two additional columns are added:
groupThe name of the grouping factor.
levelThe name of the level of the grouping factor.
Specifying par_type = "hierarchical" selects the
standard deviations and correlations of the group-level parameters.
If intervals = TRUE, columns for the lower and
upper bounds of the posterior intervals computed.