combined_data: Combined Clinical and Event Data

combined_dataR Documentation

Combined Clinical and Event Data

Description

A simulated dataset that combines longitudinal patient data, potentially including clinical observations, biomarker measurements, and specific events over time. Suitable for analyses involving time-varying covariates or event history.

Usage

data(combined_data)

Format

A data frame with 54 rows and 8 variables:

patient_id

Character. Unique patient identifier.

data_type

Character. Type of data record (e.g., "Clinical", "Biomarker", "Treatment").

start_time

Integer. Start time for the observation or event interval.

end_time

Integer. End time for the observation or event interval.

response_status

Character. Patient's response status at a given time (e.g., "CR", "PR", "SD", "PD").

on_study

Logical. Indicates if the patient was on study at the time of the record (TRUE/FALSE).

event_time

Integer. Time at which a specific event occurred.

event_type

Character. Type of event recorded (e.g., "Adverse Event", "Progression", "Dose Change").

Examples

data(combined_data)
str(combined_data)
head(combined_data)
table(combined_data$data_type, combined_data$response_status)

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