-
Notifications
You must be signed in to change notification settings - Fork 726
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confidence Intervals for ATE #260
Comments
Most of our estimators support passing |
Perhaps @vasilismsr has other thoughts on whether there are more reasonable aggregation techniques given the CATEs, or other ideas, though. |
Ohh, it's because I'm using |
Yeap. Best bet for ATE is either: LinearDRLearner with X=None or LinearDMLCateEstimator with X=None. The former might have higher variance but makes fewer assumptions, the latter might be more stable but makes a “no effect heterogeneity” assumption. |
Also for any estimator, we also offer: Albeit this functionality is yet not supported for “inference=bootstrap”, which will be the case for metalearners. It will very soon be added though as a functionality. |
Gotcha 👍. Any rough timeline for when either of the following will be supported:
|
Gotcha. Thanks! And thanks for the great Python package. |
I can estimate CATEs and their confidence intervals easily enough using
estimator.effect(X=X, T0=T0, T1=T1)
andestimator.effect_interval(X=X, T0=T0, T1=T1)
. However, what about (unconditional) averages treatment effects (ATEs)? I can estimate the ATE by just taking a mean over the CATEsestimator.effect(X=X, T0=T0, T1=T1).mean()
, but I don't believe just taking the mean over the CATE intervals will give me valid confidence intervals for the ATE (feel free to correct me if I'm wrong or if this mean over CATE intervals gives a strictly more conservative interval that what I would get if I were to directly bootstrap ATE intervals). Is there functionality in EconML to get confidence intervals of the ATE?The text was updated successfully, but these errors were encountered: