Learn R Programming

lmtp (version 1.5.0)

tidy.lmtp_survival: Tidy a(n) lmtp_survival object

Description

Tidy a(n) lmtp_survival object

Usage

# S3 method for lmtp_survival
tidy(x, ...)

Arguments

x

A lmtp_survival object produced by a call to lmtp_survival().

...

Unused, included for generic consistency only.

Examples

Run this code
# \donttest{
# Example 1.1
# Time-to-event analysis with a binary time-invariant exposure. Interested in
# the effect of treatment being given to all observations on the cumulative
# incidence of the outcome.
A <- "trt"
Y <- paste0("Y.", 1:6)
C <- paste0("C.", 0:5)
W <- c("W1", "W2")

curve <- lmtp_survival(sim_point_surv, A, Y, W, cens = C, folds = 1,
                       shift = static_binary_on, estimator = "lmtp_tmle")

tidy(curve)

# Example 1.2
# Time-to-event analysis with a binary time-invariant exposure and a competing-risk.
lmtp_survival(
  data = sim_competing_risks,
  trt = "A",
  cens = paste0("C", 1:5),
  compete = paste0("D", 1:5),
  baseline = paste0("W", 1:5),
  outcome = paste0("Y", 1:5),
  shift = static_binary_on,
  folds = 1
)
# }

Run the code above in your browser using DataLab