Example datasets demonstrating different scenarios for tumor response analysis
Format
A list containing 4 data frames:
- raw_with_time
Raw tumor measurements with time points (20 obs. of 3 variables)
- percent_with_time
Pre-calculated response percentages with time (20 obs. of 3 variables)
- percent_no_time
Pre-calculated response percentages without time (10 obs. of 2 variables)
Details
Each dataset represents a different scenario:
raw_with_time: Longitudinal raw measurements
percent_with_time: Longitudinal percentage changes
percent_no_time: Single timepoint percentage changes
Examples
data(tumor_response_examples)
head(tumor_response_examples$raw_with_time)
#> PatientID Time Measurement
#> 1 PT1 0 50
#> 2 PT1 2 30
#> 3 PT1 4 20
#> 4 PT1 6 10
#> 5 PT2 0 40
#> 6 PT2 2 30
head(tumor_response_examples$percent_no_time)
#> PatientID Response
#> 1 PT1 -80
#> 2 PT2 -30
#> 3 PT3 15
#> 4 PT4 35
#> 5 PT5 -100
#> 6 PT6 -45