Skip to contents

Print method for bayesianVARs_predict objects.

Usage

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

Arguments

x

A bayesianVARs_predict object obtained via predict.bayesianVARs_bvar().

...

Currently ignored!

Value

Returns x invisibly.

Examples

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

# Split data in train and test
train <- data[1:(nrow(data)-4),]
test <- data[-c(1:(nrow(data)-4)),]

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

# Simulate from 1-step ahead posterior predictive
predictions <- predict(mod, ahead = 1L)
#> 'stable=TRUE': Calling 'stable_bvar()' to discard those posterior
#>           draws, that do not fulfill the stable criterion.
#> 
#>  595 stable posterior draws remaining for prediction!
print(predictions)
#> 
#> Generic functions for bayesianVARs_predict objects:
#>   - summary.bayesianVARs_predict(),
#>   - pairs.bayesianVARs_predict(),
#>   - plot.bayesianVARs_predict() (alias for pairs.bayesianVARs_predict()).