Skip to contents

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.

Usage

emii_add_systemic_excl_pao_with_verification(.data, save_excel = FALSE)

Arguments

.data

The input dataframe containing patient failure data

save_excel

Logical indicating whether to save results as Excel file (default: FALSE)

Value

A tibble with the systemic control variable and relevant columns

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)
} # }