Skip to contents

Takes a dataframe with wide-format lymph node data, pivots specified columns to a long format, recodes anatomical positions, and returns a new dataframe where each row represents a single positive lymph node from EMBRACE-II at diagnosis.

Usage

emii_get_lymph_nodes_statd(df)

Arguments

df

A dataframe containing patient data with lymph node information

Value

A dataframe in long-format with one row per positive lymph node, including recoded anatomical position descriptions

Examples

if (FALSE) { # \dontrun{
emii_data <- load_embrace_ii()
ln_data <- emii_get_lymph_nodes_statd(emii_data)
} # }