Combines multiple [TTEEnrollment] objects by row-binding their data. Used for batched processing where data is too large to fit in memory at once.
Details
All trials must have the same design and data_level. The combined trial inherits: - The design and data_level from the first trial - The intersection of steps_completed from all trials - The union of weight_cols from all trials
See also
Other tte_methods:
tteenrollment_irr_combine(),
tteenrollment_rates_combine()
Examples
if (FALSE) { # \dontrun{
trials <- lapply(files, function(f) {
TTEEnrollment$new(load_data(f), design, ratio = 2)
})
combined <- tteenrollment_rbind(trials)
combined$s2_ipw()
} # }
