Estimates impulse response functions (IRFs) using user-provided external
instruments (proxies) combined with local projections (Jordà, 2005). The
proxy variables serve directly as instruments for the endogenous shock
variables. Optionally imposes recursive zero restrictions across shock
dimensions and supports deterministic controls following the same
conventions as hetiv().
d only).
Usage
proxyiv(
y,
O,
Z,
X = NULL,
Ind,
P,
H,
E = 1,
norm = 1,
cum = FALSE,
Hstep = 1,
recursive = FALSE,
details = FALSE
)Arguments
- y
Numeric matrix of stationary outcome variables (T x N). The effect on the first variable in each dimension is normalized to
normat horizon 0. These variables are also used as the endogenous regressors instrumented by the columns ofZ.- O
Numeric matrix of information set variables (T x M). May be identical to
y. Included as lags 1 throughP.- Z
Numeric matrix of external instruments (T x E). Column
eis used as the proxy for shock dimensione. Missing values on control days (Ind == 0) are treated as contaminated and excluded from estimation; missing values on policy days (Ind == 1) are retained so that those observations remain available for shock prediction even when the instrument is unobserved.- X
Numeric matrix of deterministic variables (T x K), or
NULL(default). May include a constant, time trend, or seasonal dummies. Included as-is (no lags).- Ind
Integer vector of length T, event indicator:
0Control day (no event)1Policy day (event)2Contaminated control day (excluded from estimation)
- P
Integer. Maximum lag order for the information set. Set to
0for no lags (regression on constant only).- H
Integer. Maximum horizon (in periods) up to which IRFs are estimated.
- E
Integer. Number of shock dimensions to identify. Default
1.- norm
Numeric scalar. Normalize the impact response of the first variable to this value. Set to
1for standard unit-effect normalization.- cum
Logical scalar or vector of length N. If
TRUEfor variablei, the cumulative IRF is reported. A single value is recycled to all variables. DefaultFALSE.- Hstep
Integer. Step size between horizons. The default
1estimates all horizons 0 through H - 1. Values greater than 1 are intended only for fast testing; they are only safe whenHstep >= H(a single horizon is stored). For complete IRF estimation always useHstep = 1. Default1.- recursive
Logical. If
TRUE, imposes recursive zero restrictions across shock dimensions: for shocke > 1, the variables and instruments from dimensions1, ..., e-1are added as controls. DefaultFALSE.- details
Logical. If
TRUE, returns detailed results including IV model objects, OLS residuals, and covariance matrices. IfFALSE(default), returns only impulse responses and standard errors (faster; use for bootstrap).
Value
A named list. Always contains:
irfArray (H x N x E) of estimated impulse responses.
seArray (H x N x E) of HC0 heteroscedasticity-robust standard errors.
MethodCharacter string
"Proxy-IV".
With details = TRUE, additionally contains:
IVResList of
ivregmodel objects, one per horizon, variable, and shock dimension.OLSResList of OLS model objects used for residual-based covariance estimation, one per outcome variable.
ObsData frame with observation counts:
Tp(policy days),Tc(control days),To(contaminated days),Tt(total used).etData frame of OLS residuals on event days.
SigCovariance matrix of residuals on event days.
SigRCovariance matrix of residuals on control days, or
NAif unavailable.PsiImpact matrix (N x E), equal to
irf[1, , ]. By the package's indexing conventionHSeriesstarts at 1, so the first LP useslead(y, 0)(the contemporaneous value) and is labelled horizon 0;irf[1, , ]is therefore always the impact response.WeakDataData frame of endogenous variables and instruments for the Lewis-Mertens (2025) weak instrument test.
References
Jordà, Ò. (2005). Estimation and inference of impulse responses by local projections. American Economic Review, 95(1), 161–182.
Lewis, D. J. and Mertens, K. (2025). A robust test for weak instruments for 2SLS with multiple endogenous regressors. The Review of Economic Studies, DOI: 10.1093/restud/rdaf103
Mertens, K. and Ravn, M. O. (2013). The dynamic effects of personal and corporate income tax changes in the United States. American Economic Review, 103(4), 1212–1247.
Stock, J. H. and Watson, M. W. (2018). Identification and estimation of dynamic causal effects in macroeconomics using external instruments. Economic Journal, 128(610), 917–948.