This dataset, AD_biomarkers_tbl_df, is a tibble containing clinical data from 333 patients in a study of Alzheimer's disease biomarkers. The study included patients with mild cognitive impairment and healthy controls, with measurements of demographic characteristics, apolipoprotein E genotype, protein biomarkers (including Abeta, Tau, and pTau), and clinical dementia scores.
data(AD_biomarkers_tbl_df)A tibble with 333 observations and 131 variables:
Numeric: Patient age
Numeric: Indicator for male gender (1 = male, 0 = female)
Factor: Apolipoprotein E genotype
Factor: Clinical classification (e.g., healthy, impaired)
Numeric: Amyloid-beta 42 protein measurement
Numeric: Tau protein measurement
Numeric: Phosphorylated Tau protein measurement
Numeric measurements of various proteins and biomarkers
The dataset name has been kept as 'AD_biomarkers_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.