A dataset containing raw measurement values for patients at different time points. This could represent various clinical or experimental raw readings.
Usage
data(data_raw)
Format
A data frame with 15 rows and 3 variables:
- PatientID
Character. Unique identifier for each patient.
- Time
Integer. The time point at which the measurement was taken (e.g., day, cycle, visit number).
- Measurement
Integer. The raw value of the measurement recorded.
Examples
data(data_raw)
str(data_raw)
#> 'data.frame': 15 obs. of 3 variables:
#> $ PatientID : chr "PT1" "PT1" "PT1" "PT2" ...
#> $ Time : int 0 2 4 0 2 4 0 2 4 0 ...
#> $ Measurement: int 50 40 30 60 45 35 55 50 45 70 ...
head(data_raw)
#> PatientID Time Measurement
#> 1 PT1 0 50
#> 2 PT1 2 40
#> 3 PT1 4 30
#> 4 PT2 0 60
#> 5 PT2 2 45
#> 6 PT2 4 35
summary(data_raw$Measurement)
#> Min. 1st Qu. Median Mean 3rd Qu. Max.
#> 30.0 45.0 50.0 51.0 57.5 70.0