Nothing
context("Fidelity of estimates with shifted data supplied")
a <- c("A1", "A2")
nodes <- list(c("L1"), c("L2"))
cens <- c("C1", "C2")
truth <- 0.88
sc <- shift_data(sim_cens, a, cens, function(data, trt) data[[trt]] + 0.5)
sub <-
sw(lmtp_sub(sim_cens, a, "Y", nodes, baseline = NULL,
cens, k = 0, shifted = sc,
outcome_type = "binomial",
folds = 2))
ipw <-
sw(lmtp_ipw(sim_cens, a, "Y", NULL, nodes,
cens, k = 0, shifted = sc, folds = 2, mtp = TRUE))
tmle <-
sw(lmtp_tmle(sim_cens, a, "Y", nodes, baseline = NULL,
cens, k = 0, shifted = sc,
outcome_type = "binomial", folds = 2, mtp = TRUE))
sdr <-
sw(lmtp_sdr(sim_cens, a, "Y", nodes, baseline = NULL,
cens, k = 0, shifted = sc,
outcome_type = "binomial", folds = 2, mtp = TRUE))
# tests
test_that("estimator fidelity with shifted data supplied", {
expect_equal(truth, sub$theta, tolerance = 0.05)
expect_equal(truth, ipw$theta, tolerance = 0.025)
expect_equal(truth, tmle$theta, tolerance = 0.025)
expect_equal(truth, sdr$theta, tolerance = 0.025)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.