mcmcTab {BayesPostEst} | R Documentation |
Summarize Bayesian MCMC Output R function for summarizing MCMC output in a regression-style table.
Description
Summarize Bayesian MCMC Output
R function for summarizing MCMC output in a regression-style table.
Usage
mcmcTab(
sims,
ci = c(0.025, 0.975),
pars = NULL,
Pr = FALSE,
ROPE = NULL,
regex = FALSE
)
Arguments
sims |
Bayesian model object generated by R2jags, rjags, R2WinBUGS, R2OpenBUGS, MCMCpack, rstan, and rstanarm. |
ci |
desired level for credible intervals; defaults to c(0.025, 0.975). |
pars |
character vector of parameters to be printed; defaults to |
Pr |
print percent of posterior draws with same sign as median; defaults to |
ROPE |
defaults to |
regex |
use regular expression matching with |
Value
a data frame containing MCMC summary statistics.
References
Kruschke, John K. 2013. “Bayesian Estimation Supersedes the T-Test.” Journal of Experimental Psychology: General 142 (2): 573–603. https://doi.org/10.1037/a0029146.
Examples
if (interactive()) {
data("jags_logit")
## printing out table
object <- mcmcTab(jags_logit,
ci = c(0.025, 0.975),
pars = NULL,
Pr = FALSE,
ROPE = NULL)
object
}