## ----include = FALSE---------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ## ----setup-------------------------------------------------------------------- library(Colossus) library(data.table) library(survival) library(dplyr) ## ----eval = TRUE-------------------------------------------------------------- # data(cancer, package = "survival") veteran %>% setDT() df <- copy(veteran) # Make the same adjustments as Epicure example 6.5 karno <- df$karno karno[93] <- 20 df$karno <- karno df$trt <- df$trt - 1 df$trt <- as.integer(df$trt == 0) cell_string <- df$celltype cell <- case_when( cell_string == "squamous" ~ 1, cell_string == "smallcell" ~ 2, cell_string == "adeno" ~ 3, cell_string == "large" ~ 0 ) df$cell <- cell df$karno50 <- df$karno - 50 ## ----eval = TRUE-------------------------------------------------------------- model <- CaseControl_Strata(status, cell) ~ loglinear(karno50, trt) control <- list(verbose = 2, maxiters = c(25, 25), ncores = 2) e0 <- CaseControlRun(model, df, control = control, conditional_threshold = 100) e1 <- CaseControlRun(model, df, control = control, conditional_threshold = 40) e2 <- CaseControlRun(model, df, control = control, conditional_threshold = 0) print(e0) print(e1) print(e2)