| print.txshift {txshift} | R Documentation |
Print Method for Counterfactual Mean of Stochastic Shift Intervention
Description
Print Method for Counterfactual Mean of Stochastic Shift Intervention
Usage
## S3 method for class 'txshift'
print(x, ..., ci_level = 0.95)
Arguments
x |
An object of class |
... |
Other options (not currently used). |
ci_level |
A |
Details
The print method for objects of class txshift.
Value
None. Called for the side effect of printing an informative summary
of slots of objects of class txshift.
Examples
if (require("sl3")) {
set.seed(429153)
n_obs <- 100
W <- replicate(2, rbinom(n_obs, 1, 0.5))
A <- rnorm(n_obs, mean = 2 * W, sd = 1)
Y <- rbinom(n_obs, 1, plogis(A + W + rnorm(n_obs, mean = 0, sd = 1)))
txout <- txshift(
W = W, A = A, Y = Y, delta = 0.5,
estimator = "tmle",
g_exp_fit_args = list(
fit_type = "sl",
sl_learners_density = Lrnr_density_hse$new(Lrnr_glm$new())
),
Q_fit_args = list(
fit_type = "glm",
glm_formula = "Y ~ ."
)
)
print(txout)
}
[Package txshift version 0.3.8 Index]