| pscoreSelect {cem} | R Documentation |
Heuristic search of the best propensity score model specification
pscoreSelect(formula, data, C.L=2*(pnorm(-1,0,1)), C.Q=0.1)
data |
the original data. |
formula |
formula type specification. |
C.L |
if at leat one likelihood ration test statistic is greater
than |
C.Q |
if the highest likelihood ratio statistic is greater than |
This is a tool to help the user to the search for the best
propensity score model specification along the lines
suggested by Imbens and Rubin (forthcoming). The output of the function is
a model formula to be passed to glm or such, in order
to estimate the propensity score model and then perform
propensity score matching.
This tool is useful in combination with imbspace.plot.
val |
an invisible object of class |
Richard Nielsen
Guido Imbens, Donald Rubin, “Causal Inference”, Chapter 13, forthcoming.
data(LL) mod <- pscoreSelect( treated ~ age + education + black+ married + nodegree + re74 + re75 + hispanic + u74 + u75, data=LL) print(mod)