Skip to contents

Summary method for bayesianVARs_bvar objects.

Usage

# S3 method for class 'bayesianVARs_bvar'
summary(object, quantiles = c(0.025, 0.25, 0.5, 0.75, 0.975), ...)

Arguments

object

A bayesianVARs_bvar object obtained via bvar().

quantiles

numeric vector which quantiles to compute.

...

Currently ignored!

Value

An object of type summary.bayesianVARs_bvar.

Examples

# Access a subset of the usmacro_growth dataset
data <- usmacro_growth[,c("GDPC1", "CPIAUCSL", "FEDFUNDS")]

# Estimate model
mod <- bvar(data, quiet = TRUE)

# Summary
sum <- summary(mod)