This dataset, heart_transplant_df, is a data frame containing survival data from the Stanford heart transplant program. It includes information on 172 patients with follow-up times, transplant status, and clinical covariates.
data(heart_transplant_df)A data frame with 172 observations and 8 variables:
Start time of interval (numeric)
End time of interval (numeric)
Survival status (numeric: 1=event, 0=censored)
Patient age at enrollment (numeric)
Year of enrollment (numeric)
Prior bypass surgery (numeric)
Transplant status (factor: 0=no, 1=yes)
Patient identification number (numeric)
The dataset name has been kept as 'heart_transplant_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the CardioDataSets package and assists users in identifying its specific characteristics. The suffix 'df' indicates that the dataset is a standard data frame. The original content has not been modified in any way.