subset.mcmc | R Documentation |
Subsets an mcmc object by its parameters and/or iterations.
## S3 method for class 'mcmc'
subset(x, iters = NULL, pars = NULL, iterations = NULL, parameters = NULL, ...)
x |
An mcmc object. |
iters |
An integer vector of iterations. |
pars |
A character vector of parameter names. |
iterations |
An integer vector (or NULL) of the iterations to subset by. |
parameters |
A character vector (or NULL) of the parameters to subset by. |
... |
Unused. |
Future versions should allow it to be reordered by its parameters.
An mcmc object.
mcmc <- as_mcmc(nlist(beta = 1:2, theta = 1))
subset(mcmc, pars = "beta")
subset(mcmc, iters = c(1L, 1L))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.