## ----include = FALSE---------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ## ----setup-------------------------------------------------------------------- library(trtswitch) library(dplyr, warn.conflicts = FALSE) ## ----data--------------------------------------------------------------------- # the eventual survival time shilong1 <- shilong %>% arrange(bras.f, id, tstop) %>% group_by(bras.f, id) %>% slice(n()) %>% select(-c("ps", "ttc", "tran")) # the last value of time-dependent covariates before pd shilong2 <- shilong %>% filter(pd == 0 | tstart <= dpd) %>% arrange(bras.f, id, tstop) %>% group_by(bras.f, id) %>% slice(n()) %>% select(bras.f, id, ps, ttc, tran) # combine baseline and time-dependent covariates shilong3 <- shilong1 %>% left_join(shilong2, by = c("bras.f", "id")) ## ----analysis----------------------------------------------------------------- fit1 <- tsesimp( data = shilong3, time = "tstop", event = "event", treat = "bras.f", censor_time = "dcut", pd = "pd", pd_time = "dpd", swtrt = "co", swtrt_time = "dco", base_cov = c("agerand", "sex.f", "tt_Lnum", "rmh_alea.c", "pathway.f"), base2_cov = c("agerand", "sex.f", "tt_Lnum", "rmh_alea.c", "pathway.f", "ps", "ttc", "tran"), aft_dist = "weibull", alpha = 0.05, recensor = TRUE, swtrt_control_only = FALSE, offset = 1, boot = FALSE) ## ----aft---------------------------------------------------------------------- # control group fit1$fit_aft[[1]]$fit$parest[, c("param", "beta", "sebeta", "z")] fit1$psi # experimental group fit1$fit_aft[[2]]$fit$parest[, c("param", "beta", "sebeta", "z")] fit1$psi_trt ## ----cox---------------------------------------------------------------------- fit1$fit_outcome$parest[, c("param", "beta", "sebeta", "z")] c(fit1$hr, fit1$hr_CI)