FEVD: Estimate forecast error variance decomposition

Description Usage Arguments Value See Also Examples

View source: R/analysis_wrappers.R

Description

Estimate the forecast error variance decomposition for VARs with either short or 'IV-short' structural errors. See VAR and RVAR documentation for details regarding structural errors.

Usage

1
FEVD(model, horizon = 10, scale = TRUE)

Arguments

model

VAR or RVAR class object

horizon

int: number of periods

scale

boolean: scale variable contribution as percent of total error

Value

long-form data.frame

See Also

VAR()

var_fevd()

RVAR()

rvar_fevd()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 # simple time series
 AA = c(1:100) + rnorm(100)
 BB = c(1:100) + rnorm(100)
 CC = AA + BB + rnorm(100)
 date = seq.Date(from = as.Date('2000-01-01'), by = 'month', length.out = 100)
 Data = data.frame(date = date, AA, BB, CC)

 # estimate VAR
  var =
    sovereign::VAR(
      data = Data,
      horizon = 10,
      freq = 'month',
      lag.ic = 'BIC',
      lag.max = 4)

# impulse response functions
var.irf = sovereign::IRF(var)

# forecast error variance decomposition
var.fevd = sovereign::FEVD(var)

# historical shock decomposition
var.hd = sovereign::HD(var)

sovereign documentation built on Jan. 5, 2022, 1:08 a.m.