View source: R/thin.bvarlist.R
| thin.bvarlist | R Documentation | 
Thins the MCMC posterior draws in an object of class "bvarlist".
## S3 method for class 'bvarlist'
thin(x, thin = 10, ...)
| x | an object of class  | 
| thin | an integer specifying the thinning interval between successive values of posterior draws. | 
| ... | further arguments passed to or from other methods. | 
An object of class "bvarlist".
# Load data
data("e1")
e1 <- diff(log(e1)) * 100
# Generate multiple model matrices
model <- gen_var(e1, p = 1:2, deterministic = 2,
                 iterations = 100, burnin = 10)
# Add prior specifications
model <- add_priors(model)
# Obtain posterior draws
object <- draw_posterior(model)
# Thin
object <- thin(object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.