A dataset containing patient identifiers and their corresponding treatment response values, likely expressed as percentages.
Usage
data(data_percentage)
Format
A data frame with 10 rows and 2 variables:
- PatientID
Character. Unique identifier for each patient.
- Response
Integer. The treatment response value, presumably a percentage (e.g., percent change in tumor size).
Examples
data(data_percentage)
str(data_percentage)
#> 'data.frame': 10 obs. of 2 variables:
#> $ PatientID: chr "PT1" "PT2" "PT3" "PT4" ...
#> $ Response : int -100 -45 -30 -20 -10 0 10 20 30 40
head(data_percentage)
#> PatientID Response
#> 1 PT1 -100
#> 2 PT2 -45
#> 3 PT3 -30
#> 4 PT4 -20
#> 5 PT5 -10
#> 6 PT6 0
summary(data_percentage$Response)
#> Min. 1st Qu. Median Mean 3rd Qu. Max.
#> -100.0 -27.5 -5.0 -10.5 17.5 40.0