
brmsfit
objectA pairs
method that is customized for MCMC output.
# S3 method for brmsfit
pairs(x, pars = NA, fixed = FALSE, exact_match = FALSE, ...)
An object of class brmsfit
Names of the parameters to plot, as given by a character vector or a regular expression. By default, all parameters except for group-level and smooth effects are plotted.
Indicates whether parameter names
should be matched exactly (TRUE
) or treated as
regular expressions (FALSE
). Default is FALSE
.
Deprecated alias of argument fixed
.
Further arguments to be passed to
mcmc_pairs
.
For a detailed description see
mcmc_pairs
.
# NOT RUN {
fit <- brm(count ~ zAge + zBase * Trt
+ (1|patient) + (1|visit),
data = epilepsy, family = "poisson")
pairs(fit, pars = parnames(fit)[1:3], fixed = TRUE)
pairs(fit, pars = "^sd_")
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab