Extract posterior draws in conventional formats as data.frames, matrices, or arrays.
# S3 method for brmsfit
as.data.frame(
x,
row.names = NULL,
optional = TRUE,
pars = NA,
variable = NULL,
draw = NULL,
subset = NULL,
...
)# S3 method for brmsfit
as.matrix(x, pars = NA, variable = NULL, draw = NULL, subset = NULL, ...)
# S3 method for brmsfit
as.array(x, pars = NA, variable = NULL, draw = NULL, subset = NULL, ...)
A data.frame, matrix, or array containing the posterior draws.
A brmsfit
object or another R object for which
the methods are defined.
Unused and only added for consistency with
the as.data.frame
generic.
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.
The draw indices to be select. Subsetting draw indices will lead to an automatic merging of chains.
Deprecated alias of draw
.
Further arguments to be passed to the corresponding
as_draws_*
methods as well as to
subset_draws
.
as_draws
,
subset_draws