This estimator wraps the grf::causal_forest() implementation to estimate
the average treatment effect on the treated (ATT). It is treated as
"doubly-robust" in the sense of GRF: the causal forest internally uses
orthogonalization with nuisance estimates for propensity and outcome.
Arguments
- df
Data frame as returned in
dgp$df, containing at leasty,w, and covariates. Covariates are taken as all non-core columns (i.e., excludingy,w,y0,y1,p,structural_te).- config
Optional list of configuration options. Common fields include:
ci_method: CI intent; one of "none", "default", "bootstrap", "native" (see cs_ci_methods).seed: required when bootstrap CIs are requested.n_boot: number of bootstrap draws if using bootstrap CIs.GRF hyperparameters (e.g.,
num.trees,min.node.size).
For this estimator,
ci_method = "default"maps to"native".- tau
Ignored. Included for API compatibility with other estimators.
- ...
Ignored. Reserved for future extensions.