mn.reg {iWeigReg} | R Documentation |
Non-calibrated regression estimator for the missing-data setup
Description
This function implements the non-calibrated (or non-doubly robust) likelihood estimator of the mean outcome in the presence of missing data.
Usage
mn.reg(y, tr, p, g, X=NULL, evar=TRUE, inv="solve")
Arguments
y |
A vector of outcomes with missing data. |
tr |
A vector of non-missing indicators (=1 if |
p |
A vector of known or fitted propensity scores. |
g |
A matrix of calibration variables (see the details). |
X |
The model matrix for the propensity score model, assumed to be logistic (set |
evar |
Logical; if |
inv |
Type of matrix inversion, set to "solve" (default) or "ginv" (which can be used in the case of computational singularity). |
Details
The columns of g
correspond to calibration variables, which can be specified to include a constant and the fitted outcome regression function. See the examples below. In general, a calibration variable is a function of measured covariates selected to exploit the fact that its weighted mean among "responders" should equal to its unweighted population mean.
To estimate the propensity scores, a logistic regression model is assumed.
The model matrix X
does not need to be provided and can be set to NULL
, in which case the estimated propensity scores are treated as known in the estimation.
If the model matrix X
is provided, then the "score," (tr-p)X
, from the logistic regression is used to generate additional calibration constraints in the estimation. This may sometimes lead to unreliable estimates due to multicollinearity, as discussed in Tan (2006). Therefore, this option should be used with caution.
Variance estimation is based on asymptotic expansions similar to those for mn.creg
in Tan (2013). Alternatively, resampling methods (e.g., bootstrap) can be used.
Value
mu |
The estimated mean. |
v |
The estimated variance of |
b |
The vector of regression coefficients. |
References
Tan, Z. (2006) "A distributional approach for causal inference using propensity scores," Journal of the American Statistical Association, 101, 1619-1637.
Tan, Z. (2010) "Bounded, efficient and doubly robust estimation with inverse weighting," Biometrika, 97, 661-682.
Tan, Z. (2013) "Variance estimation under misspecified models," unpublished manuscript, http://www.stat.rutgers.edu/~ztan.
Examples
data(KS.data)
attach(KS.data)
z=cbind(z1,z2,z3,z4)
x=cbind(x1,x2,x3,x4)
#missing data
y[tr==0] <- 0
#logistic propensity score model, correct
ppi.glm <- glm(tr~z, family=binomial(link=logit))
X <- model.matrix(ppi.glm)
ppi.hat <- ppi.glm$fitted
#outcome regression model, misspecified
y.fam <- gaussian(link=identity)
eta1.glm <- glm(y ~ x, subset=tr==1,
family=y.fam, control=glm.control(maxit=1000))
eta1.hat <- predict.glm(eta1.glm,
newdata=data.frame(x=x), type="response")
#ppi.hat treated as known
out.reg <- mn.reg(y, tr, ppi.hat, g=cbind(1,eta1.hat))
out.reg$mu
out.reg$v
#ppi.hat treated as estimated
out.reg <- mn.reg(y, tr, ppi.hat, g=cbind(1,eta1.hat), X)
out.reg$mu
out.reg$v