![](../logo.png)
Add Systemic Control Status (Excluding Para-aortic) with Verification
Source:R/emii_add_systemic_excl_pao.R
emii_add_systemic_excl_pao_with_verification.Rd
This function adds a column indicating whether a patient had systemic failure and returns a tibble with the created column and all columns used for verification.
Examples
if (FALSE) { # \dontrun{
data <- tibble(
embrace_id = c("A1", "A2"),
event_systemicfailure = c(TRUE, FALSE),
has_liver_metastases = c(TRUE, FALSE),
has_bone_metastases = c(FALSE, TRUE)
)
result <- emii_add_systemic_excl_pao_with_verification(data)
result <- emii_add_systemic_excl_pao_with_verification(data, save_excel = TRUE)
} # }