Skip to contents

Extends check_nodal_location to check for multiple locations simultaneously and adds the results as new columns to the original data frame.

Usage

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

Arguments

.data

A data frame containing patient node data

locations

Character vector of anatomical locations to check

time_point

Character string specifying which timepoint to check

Value

Original data frame 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)
} # }