Skip to contents

Print method for summary.bayesianVARs_bvar objects.

Usage

# S3 method for class 'summary.bayesianVARs_bvar'
print(x, ...)

Arguments

x

A summary.bayesianVARs_bvar object obtained via summary.bayesianVARs_bvar().

...

Currently ignored!

Value

Returns x invisibly!

Examples

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

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

# Print summary
summary(mod)
#> 
#> Posterior median of reduced-form coefficients:
#>                 GDPC1 CPIAUCSL   FEDFUNDS
#> GDPC1.l1     0.226152  0.00604  1.362e-02
#> CPIAUCSL.l1 -0.063468  0.62045 -4.773e-03
#> FEDFUNDS.l1  0.009492  0.03717  1.001e+00
#> intercept    0.005959  0.00120 -4.555e-05
#> 
#> Posterior interquartile range of of reduced-form coefficients:
#>                GDPC1  CPIAUCSL  FEDFUNDS
#> GDPC1.l1    0.105445 0.0271618 0.0208810
#> CPIAUCSL.l1 0.118059 0.0930382 0.0131568
#> FEDFUNDS.l1 0.019176 0.0145773 0.0065391
#> intercept   0.001173 0.0007342 0.0001668