| summary.mcdraws | R Documentation | 
Summarise an mcdraws object
## S3 method for class 'mcdraws'
summary(
  object,
  vnames = NULL,
  probs = c(0.05, 0.5, 0.95),
  na.rm = FALSE,
  efficiency = FALSE,
  abbr = FALSE,
  batch.size = 100L,
  ...
)
| object | an object of class  | 
| vnames | optional character vector to select a subset of parameters. | 
| probs | vector of probabilities at which to evaluate quantiles. | 
| na.rm | whether to remove NA/NaN draws in computing the summaries. | 
| efficiency | if  | 
| abbr | if  | 
| batch.size | number of parameter columns to process simultaneously for vector parameters. A larger batch size may speed things up a little, but if an out of memory error occurs it may be a good idea to use a smaller number and try again. The default is 100. | 
| ... | arguments passed to  | 
A list of class mcdraws_summary summarizing object.
ex <- mcmcsae_example()
sampler <- create_sampler(ex$model, data=ex$dat)
sim <- MCMCsim(sampler, store.all=TRUE)
summary(sim)
par_names(sim)
summary(sim, c("beta", "v_sigma", "u_sigma"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.