Learn R Programming

bayesianVARs (version 0.1.6)

summary.bayesianVARs_bvar: Summary method for bayesianVARs_bvar objects

Description

Summary method for bayesianVARs_bvar objects.

Usage

# S3 method for bayesianVARs_bvar
summary(object, quantiles = c(0.025, 0.25, 0.5, 0.75, 0.975), digits = 3L, ...)

Value

An object of type summary.bayesianVARs_bvar.

Arguments

object

A bayesianVARs_bvar object obtained via bvar().

quantiles

numeric vector which quantiles to compute.

digits

Single integer indicating the number of decimal places to be used for rounding the summary statistics. Negative values are not allowed.

...

Currently ignored!

Examples

Run this code
# 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)

Run the code above in your browser using DataLab