This dataset, epilepsy_RCT_tbl_df, is a tibble containing data from a randomized controlled trial of progabide for epilepsy treatment. The trial recorded seizure counts for 59 patients at baseline and four follow-up visits.
data(epilepsy_RCT_tbl_df)A tibble with 59 observations and 8 variables:
Integer: Patient identification number
Factor with 2 levels: Treatment group (progabide/control)
Integer: Baseline seizure count
Integer: Patient age in years
Integer: Seizure count at first follow-up
Integer: Seizure count at second follow-up
Integer: Seizure count at third follow-up
Integer: Seizure count at fourth follow-up
The dataset name has been kept as 'epilepsy_RCT_tbl_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the NeuroDataSets package. The suffix 'tbl_df' indicates that the dataset is a tibble. The original content has not been modified.