fevd.bvar | R Documentation |
Produces the forecast error variance decomposition of a Bayesian VAR model.
## S3 method for class 'bvar'
fevd(
object,
response = NULL,
n.ahead = 5,
type = "oir",
normalise_gir = FALSE,
period = NULL,
...
)
object |
an object of class |
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 |
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 |
... |
further arguments passed to or from other methods. |
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
.
A time-series object of class "bvarfevd"
.
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.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.