inst/demo_bs/ex_4_single_tte.r

### Example of single arm and time-to-event outcome
suppressMessages(library(psrwe, quietly = TRUE))
options(digits = 3)
data(ex_dta)

### Obtain PSs.
dta_ps_single <- psrwe_est(ex_dta,
                     v_covs = paste("V", 1:7, sep = ""),
                     v_grp = "Group", cur_grp_level = "current",
                     ps_method = "logistic", nstrata = 5)

### Obtain discounting parameters.
ps_bor_single <- psrwe_borrow(dta_ps_single, total_borrow = 30)

### PSKM, single arm study, time-to-event outcome.
rst_km <- psrwe_survkm(ps_bor_single,
                       pred_tp  = 365,
                       v_time    = "Y_Surv",
                       v_event   = "Status")

### Outcome analysis.
oa_km <- psrwe_outana(rst_km, mu = 0.70, alternative = "greater")
oa_km
print(oa_km, show_details = TRUE)
summary(oa_km, pred_tps = c(180, 365))

### Use simple Bootstrap stderr. This may take a while longer.
set.seed(12341)
rst_km_sbs <- psrwe_survkm(ps_bor_single,
                           pred_tp  = 365,
                           v_time    = "Y_Surv",
                           v_event   = "Status",
                           stderr_method = "sbs")
oa_km_sbs <- psrwe_outana(rst_km_sbs, mu = 0.70, alternative = "greater")
summary(oa_km_sbs, pred_tps = c(180, 365))

### Use complex Bootstrap stderr. This may take a while longer.
set.seed(12342)
rst_km_cbs <- psrwe_survkm(ps_bor_single,
                           pred_tp  = 365,
                           v_time    = "Y_Surv",
                           v_event   = "Status",
                           stderr_method = "cbs")
oa_km_cbs <- psrwe_outana(rst_km_cbs, mu = 0.70, alternative = "greater")
summary(oa_km_cbs, pred_tps = c(180, 365))
olssol/psrwe documentation built on July 17, 2024, 4:06 p.m.