Closed go-bayes closed 1 year ago
Hi @go-bayes,
If you are worried about model mis-specification for the censoring process, you could estimate it non-parametrically with a survival_forest
(PS: these can handle missingness in the covariates). This is the approach we take here where we describe an IPC-weighted causal forest in section 3.2 (with a doubly robust correction in the remaining part of that paper, available in the function causal_survival_forest
).
Using sample weights that are a product of other weights comes up in various settings, in this handbook chapter (Example 13) there's an example of an estimator (IPC-weighted R-learner) that can be fit via using weights that are a product of IPC weights and centered propensity scores.
Dear @erikcs,
Thank you very much for your clear reply. This is an excellent recommendation. I'm looking forward to giving it a try!
-- Joe
Causal Random Forests
Dear grf developers,
Thank you for this wonderful tool.
I am using the
grf
package for a causal forest analysis involving longitudinal data and facing the challenge of missing outcomes arising from panel attrition/non-responseA further complication is survey weights, which we hope to use to generalise.
My concerns are: (1) censoring model misspecification (can we do better)? (2) invalidating inference by multiplying the censoring and sampling weights and passing to
grf
My apologies if I missed your recommended approach in this setting.
Thank you for your assistance and thank you once again for developing this really great software!
Joe