![](../logo.png)
Add Pelvic Nodal Event Status with Verification
Source:R/emii_add_pelvic_nodal_event.R
emii_add_pelvic_nodal_event_with_verification.Rd
This function adds a column indicating whether a patient had a pelvic nodal event 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_nodalfailure = c(TRUE, FALSE),
has_Para.Aortic_followup = c(FALSE, TRUE),
has_other_followup = c(FALSE, FALSE),
has_L.groin_followup = c(FALSE, FALSE),
has_R.groin_followup = c(FALSE, FALSE)
)
result <- emii_add_pelvic_nodal_event_with_verification(data)
result <- emii_add_pelvic_nodal_event_with_verification(data, save_excel = TRUE)
} # }