Learn R Programming

bvartools (version 0.2.4)

fevd.bvar: Forecast Error Variance Decomposition

Description

Produces the forecast error variance decomposition of a Bayesian VAR model.

Usage

# S3 method for bvar
fevd(
  object,
  response = NULL,
  n.ahead = 5,
  type = "oir",
  normalise_gir = FALSE,
  period = NULL,
  ...
)

Value

A time-series object of class "bvarfevd".

Arguments

object

an object of class "bvar", usually, a result of a call to bvar or bvec_to_bvar.

response

name of the response variable.

n.ahead

number of steps ahead.

type

type of the impulse responses used to calculate forecast error variable decompositions. Possible choices are orthogonalised oir (default) and generalised gir impulse responses.

normalise_gir

logical. Should the GIR-based FEVD be normalised?

period

integer. Index of the period, for which the variance decomposition should be generated. Only used for TVP or SV models. Default is NULL, so that the posterior draws of the last time period are used.

...

further arguments passed to or from other methods.

Details

The function produces forecast error variance decompositions (FEVD) for the VAR model $$A_0 y_t = \sum_{i = 1}^{p} A_{i} y_{t-i} + u_t,$$ with \(u_t \sim N(0, \Sigma)\). For non-structural models matrix \(A_0\) is set to the identiy matrix and can therefore be omitted, where not relevant.

If the FEVD is based on the orthogonalised impulse resonse (OIR), the FEVD will be calculated as $$\omega^{OIR}_{jk, h} = \frac{\sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i P e_k )^2}{\sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i \Sigma \Phi_i^{\prime} e_j )},$$ where \(\Phi_i\) is the forecast error impulse response for the \(i\)th period, \(P\) is the lower triangular Choleski decomposition of the variance-covariance matrix \(\Sigma\), \(e_j\) is a selection vector for the response variable and \(e_k\) a selection vector for the impulse variable.

If type = "sir", the structural FEVD will be calculated as $$\omega^{SIR}_{jk, h} = \frac{\sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i A_0^{-1} e_k )^2}{\sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i A_0^{-1} A_0^{-1\prime} \Phi_i^{\prime} e_j )},$$ where \(\sigma_{jj}\) is the diagonal element of the \(j\)th variable of the variance covariance matrix.

If type = "gir", the generalised FEVD will be calculated as $$\omega^{GIR}_{jk, h} = \frac{\sigma^{-1}_{jj} \sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i \Sigma e_k )^2}{\sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i \Sigma \Phi_i^{\prime} e_j )},$$ where \(\sigma_{jj}\) is the diagonal element of the \(j\)th variable of the variance covariance matrix.

If type = "sgir", the structural generalised FEVD will be calculated as $$\omega^{SGIR}_{jk, h} = \frac{\sigma^{-1}_{jj} \sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i A_0^{-1} \Sigma e_k )^2}{\sum_{i = 0}^{h-1} (e_j^{\prime} \Phi_i A_0^{-1} \Sigma A_0^{-1\prime} \Phi_i^{\prime} e_j )}$$.

Since GIR-based FEVDs do not add up to unity, they can be normalised by setting normalise_gir = TRUE.

References

Lütkepohl, H. (2006). New introduction to multiple time series analysis (2nd ed.). Berlin: Springer.

Pesaran, H. H., & Shin, Y. (1998). Generalized impulse response analysis in linear multivariate models. Economics Letters, 58, 17-29.

Examples

Run this code

# Load data
data("e1")
e1 <- diff(log(e1)) * 100

# Generate models
model <- gen_var(e1, p = 2, deterministic = 2,
                 iterations = 100, burnin = 10)

# Add priors
model <- add_priors(model)

# Obtain posterior draws
object <- draw_posterior(model)

# Obtain FEVD
vd <- fevd(object, response = "cons")

# Plot FEVD
plot(vd)

Run the code above in your browser using DataLab