Estimate impulse response functions

lp_irf(lp, CI = c(0.1, 0.9), regime = NULL)

Arguments

lp

LP output

CI

numeric vector: c(lower ci bound, upper ci bound)

regime

string: indicates regime index column of data

Value

long-form data.frame with one row per target-shock-horizon identifier

See also

Examples

# \donttest{ # 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) # local projection forecasts lp = sovereign::LP( data = Data, horizon = c(1:10), lag.ic = 'AIC', lag.max = 4, type = 'both', freq = 'month')
#> Warning: NAs introduced by coercion
#> Warning: NAs introduced by coercion
#> Warning: NAs introduced by coercion
#> Warning: NAs introduced by coercion
# impulse response function irf = sovereign::lp_irf(lp) # }