Skip to contents

This function extends check_nodal_location to check for multiple locations simultaneously

Usage

check_multiple_locations(.data, locations, time_point = "any")

Arguments

.data

The input dataframe containing patient node data

locations

Character vector of anatomical locations to check

time_point

Optional character string to specify which timepoint to check

Value

Original dataframe with additional boolean columns for each location

Examples

if (FALSE) { # \dontrun{
# Check for multiple locations
locations <- c("R int iliac", "L int iliac", "Para Aortic")
result <- check_multiple_locations(patient_data, locations)
} # }