Print Methods for Treatment Effect Estimators.
Source:R/ddml_ate.R, R/ddml_att.R, R/ddml_late.R
print.summary.ddml_ate.RdPrint methods for treatment effect estimators.
Arguments
- x
An object of class
summary.ddml_ate,summary.ddml_att, andddml_late, as returned bysummary.ddml_ate(),summary.ddml_att(), andsummary.ddml_late(), respectively.- digits
The number of significant digits used for printing.
- ...
Currently unused.
Examples
# Construct variables from the included Angrist & Evans (1998) data
y = AE98[, "worked"]
D = AE98[, "morekids"]
X = AE98[, c("age","agefst","black","hisp","othrace","educ")]
# Estimate the average treatment effect using a single base learner, ridge.
ate_fit <- ddml_ate(y, D, X,
learners = list(what = mdl_glmnet,
args = list(alpha = 0)),
sample_folds = 2,
silent = TRUE)
#> Warning: : 1 propensity scores were trimmed.
summary(ate_fit)
#> ATE estimation results:
#>
#> Estimate Std. Error t value Pr(>|t|)
#> -0.142 0.0153 -9.24 2.37e-20