date_formats: Date Format Handling Example Data

date_formatsR Documentation

Date Format Handling Example Data

Description

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.

Usage

data(date_formats)

Format

A data frame with 40 rows and 15 variables:

PatientID

Character. Unique patient identifier.

StartDate

Date. A start date, likely for a treatment or observation period.

Duration

Numeric. Duration, possibly in days or months, related to an event or period.

Age

Numeric. Patient's age.

Weight

Numeric. Patient's weight.

ECOG

Integer. ECOG (Eastern Cooperative Oncology Group) performance status score.

PriorTherapy

Character. Information about prior therapies (e.g., "Yes", "No", type of therapy).

EndDate

Date. An end date, corresponding to the StartDate.

BestResponse

Character. Best response to treatment (e.g., "CR", "PR", "SD", "PD").

StartDate_YMD

Date. Start date in Year-Month-Day format.

StartDate_DMY

Date. Start date in Day-Month-Year format.

StartDate_MDY

Date. Start date in Month-Day-Year format.

EndDate_YMD

Date. End date in Year-Month-Day format.

EndDate_DMY

Date. End date in Day-Month-Year format.

EndDate_MDY

Date. End date in Month-Day-Year format.

Examples

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)

sbalci/ClinicoPathJamoviModule documentation built on June 13, 2025, 9:34 a.m.