late.aipw {RCAL}R Documentation

Augmented inverse probability weighted estimation of local average treatment effects

Description

This function implements augmented inverse probability weighted (IPW) estimation of local average treatment effects (LATEs) as proposed in Tan (2006), provided the fitted instrument propensity scores and fitted values from both treatment and outcome regressions.

Usage

late.aipw(y, tr, iv, mfp, mft, mfo, off = NULL)

Arguments

y

An nn x 11 vector of observed outcomes.

tr

An nn x 11 vector of treatment indicators (=1 if treated or 0 if untreated).

iv

An nn x 11 vector of instruments (0 or 1).

mfp

An nn x 22 matrix of fitted instrument propensity scores for iv=0 (first column) and iv=1 (second column).

mft

An nn x 22 matrix of fitted values from treatment regression, for iv=0 (first column) and iv=1 (second column).

mfo

An nn x 44 matrix of fitted values from outcome regression, for iv=0, tr=0 (first column), iv=0, tr=1 (second column), iv=1, tr=0 (third column) and iv=1, tr=1 (fourth column).

off

A 22 x 11 vector of offset values (e.g., the true values in simulations) used to calculate the z-statistics.

Details

The individual expectations θd=E(Y(d)D(1)>D(0))\theta_d=E(Y(d)|D(1)>D(0)) are estimated separately for d{0,1}d\in\{0,1\} using inverse probability weighting ("ipw"), treatment and outcome regressions ("or") and augmented IPW methods as proposed in Tan (2006). The population LATE is defined as θ1θ0\theta_1-\theta_0.

Value

ipw

A 22 x 11 vector of IPW estimates of θ1\theta_1 and θ0\theta_0; see Details.

or

A 22 x 11 vector of regression estimates of θ1\theta_1 and θ0\theta_0; see Details.

est

A 22 x 11 vector of augmented IPW estimates of θ1\theta_1 and θ0\theta_0; see Details.

var

The estimated variances associated with the augmented IPW estimates of θ1\theta_1 and θ0\theta_0.

ze

The z-statistics for the augmented IPW estimates of θ1\theta_1 and θ0\theta_0, compared to off.

late.est

The augmented IPW estimate of LATE.

late.var

The estimated variance associated with the augmented IPW estimate of LATE.

late.ze

The z-statistic for the augmented IPW estimate of LATE, compared to off.

References

Tan, Z. (2006) Regression and weighting methods for causal inference using instrumental variables, Journal of the American Statistical Association, 101, 1607–1618.


[Package RCAL version 2.0 Index]