Description Usage Arguments Details Value References Examples
The function estimates a treatment effect in a setting with very many controls and very many instruments (even larger than the sample size).
1 2 3 4 5 6 7 8 9 10 11 |
x |
matrix of exogenous variables |
... |
arguments passed to the function |
d |
endogenous variable |
y |
outcome / dependent variable (vector or matrix) |
z |
matrix of instrumental variables |
select.Z |
logical, indicating selection on the instruments. |
select.X |
logical, indicating selection on the exogenous variables. |
post |
logical, wheter post-Lasso should be conducted (default= |
formula |
An object of class |
data |
an optional data frame, list or environment (or object coercible by as.data.frame to a data frame) containing the variables in the model.
If not found in data, the variables are taken from environment(formula), typically the environment from which |
The implementation for selection on x and z follows the procedure described in Chernozhukov et al.
(2015) and is built on 'triple selection' to achieve an orthogonal moment
function. The function returns an object of S3 class rlassoIV.
Moreover, it is wrap function for the case that selection should be done only with the instruments Z (rlassoIVselectZ) or with
the control variables X (rlassoIVselectX) or without selection (tsls). Exogenous variables
x are automatically used as instruments and added to the
instrument set z.
an object of class rlassoIV containing at least the following
components:
coefficients |
estimated parameter value |
se |
variance-covariance matrix |
V. Chernozhukov, C. Hansen, M. Spindler (2015). Post-selection and post-regularization inference in linear models with many controls and instruments. American Economic Review: Paper & Proceedings 105(5), 486–490.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
data(EminentDomain)
z <- EminentDomain$logGDP$z # instruments
x <- EminentDomain$logGDP$x # exogenous variables
y <- EminentDomain$logGDP$y # outcome varialbe
d <- EminentDomain$logGDP$d # treatment / endogenous variable
lasso.IV.Z = rlassoIV(x=x, d=d, y=y, z=z, select.X=FALSE, select.Z=TRUE)
summary(lasso.IV.Z)
confint(lasso.IV.Z)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.