date_formats | R Documentation |
A dataset showcasing various date formats and patient-related information. It appears designed to test or demonstrate date parsing and handling capabilities, as well as general data manipulation.
data(date_formats)
A data frame with 40 rows and 15 variables:
Character. Unique patient identifier.
Date. A start date, likely for a treatment or observation period.
Numeric. Duration, possibly in days or months, related to an event or period.
Numeric. Patient's age.
Numeric. Patient's weight.
Integer. ECOG (Eastern Cooperative Oncology Group) performance status score.
Character. Information about prior therapies (e.g., "Yes", "No", type of therapy).
Date. An end date, corresponding to the StartDate.
Character. Best response to treatment (e.g., "CR", "PR", "SD", "PD").
Date. Start date in Year-Month-Day format.
Date. Start date in Day-Month-Year format.
Date. Start date in Month-Day-Year format.
Date. End date in Year-Month-Day format.
Date. End date in Day-Month-Year format.
Date. End date in Month-Day-Year format.
data(date_formats)
str(date_formats)
head(date_formats[, 1:8]) # Show first few columns due to width
summary(date_formats$Age)
table(date_formats$BestResponse)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.