Overview
NACCADRC is an R data package (R Core Team 2025; Donohue et al. 2026) containing data and R code for the National Alzheimer’s Coordinating Center (NACC) (Beekly et al. 2007) Alzheimer’s Disease Research Centers (ADRC) data. NACCADRC is a bundle of data, analysis code examples, and documentation. Data, including the R package are available from the NACC.
NACCADRC includes data from:
-
The Uniform Data Set (UDS) (Beekly et al. 2007)
- Dataset names that start with
uds_.
- Dataset names that start with
-
Standardized, Centralized AD/ADRD Neuroimaging (SCAN) (U24 AG067418 PIs William Jagust, MD and Clifford Jack, MD)
- Dataset names that start with
scan_.
- Dataset names that start with
-
Alzheimer’s Disease Sequencing Project–Phenotype Harmonization Consortium (ADSP-PHC) (U24 AG074855, PI Timothy J. Hohman, PhD). The ADSP-PHC focuses on post hoc harmonization of genetic ADRD datasets and is currently evaluating the ability to combine imaging phenotypes across studies implementing different acquisition protocols
- Dataset names that start with
phc_.
- Dataset names that start with
-
Consortium for Clarity in ADRD Research Through Imaging (CLARiTI) (U01 AG082350, PI Sterling Johnson, PhD). CLARiTI is a nationwide research initiative focused on standardized PET and MRI imaging across ADRC sites.
- Dataset names that start with
clariti_.
- Dataset names that start with
Note some datasets that combine data from different sources have the prefix dropped (e.g. amyloidpetgaain, amyloidpetnpdka, fdgpetnpdka, mriqc, mrisbm, petqc, and taupetnpdka)
ADRC program components
(adapted from (Mormino et al. 2025))
- Alzheimer’s Disease Research Centers (ADRCs): Individual centers throughout the United States, funded via a project grant by the National Institute on Aging (NIA). Each ADRC enrolls a Clinical Core cohort relevant for AD and related dementias (ADRD). Inclusion is determined based on center expertise.
- National Alzheimer’s Coordinating Center (NACC): NACC is the centralized data repository for the ADRC program, and additionally provides infrastructure for collaboration and communication across sites. NACC is directed by Drs. Walter Kukull and Sarah Biber at the University of Washington.
- National Centralized Repository for Alzheimer’s Disease and Related Dementias (NCRAD): NCRAD supports the ADRCs with a fluid biorepository, genome-wide panels, and standard blood collection procedures. NCRAD is directed by Dr. Tatiana Foroud at Indiana University.
- Standardized, Centralized AD/ADRD Neuroimaging (SCAN): SCAN implements multi-site workflows for standardized acquisition and analysis of PET and MRI data across ADRC sites. The SCAN PET Core is led by Bill Jagust at University of California Berkeley and the SCAN MRI Core is led by Clifford Jack at Mayo.
- The Laboratory of Neuroimaging (LONI): LONI acts as the repository for PET and MRI image data collected with SCAN standardized protocols across the ADRC sites. LONI is directed by Dr. Arthur Toga at the University of Southern California.
- The Consortium for Clarity in ADRD Research Through Imaging (CLARiTI) (U01 AG082350) (Mormino et al. 2025) This initiative aims to strengthen the Alzheimer’s Disease Research Center (ADRC) program by providing standardized, comprehensive in vivo biomarker data to improve understanding of mixed pathologies in Alzheimer’s disease and related dementias (ADRD). Building on existing ADRC infrastructure, CLARiTI incorporates standardized imaging and plasma collection to characterize mixed pathologies and applies community‑engaged research methods to enhance diversity in ADRD research..
Installation
To install the package locally, run
install.packages("path/to/NACCADRC_73.20260410.1.tar.gz", repos = NULL, type = "source")Package usage and key meta data
Package source data release date
The NACCADRC package contains a data stamped date of which the raw data was downloaded to build the package. For instance, the current package contains data that downloaded from the NACC as of 2026-04-10.
Code
# Data source downloaded date
data_release_date
#> [1] "2026-04-10"Data dictionary
The separate data dictionaries provide by NACC have been merged into one data dictionary file (data_dictionary):
Code
head(data_dictionary, 6)
#> # A tibble: 6 × 15
#> DataName VariableName ShortDescriptor Comment AllowableCodes Source Data Freeze variable…¹ `Data type` `Data source` `Variable Length`
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 phc_biomarker NACCID Participant ID <NA> <NA> NACC_… <NA> <NA> <NA> <NA>
#> 2 phc_biomarker NACCVNUM Visit Number <NA> <NA> NACC_… <NA> <NA> <NA> <NA>
#> 3 phc_biomarker AB42_RAW Raw AB42 Biomarker Leve… <NA> <NA> NACC_… <NA> <NA> <NA> <NA>
#> 4 phc_biomarker PHC_AB42 Harmonized Z-Score for … <NA> <NA> NACC_… <NA> <NA> <NA> <NA>
#> 5 phc_biomarker Tau_RAW Raw Tau Biomarker Levels <NA> <NA> NACC_… <NA> <NA> <NA> <NA>
#> 6 phc_biomarker PHC_Tau Harmonized Z-Score for … <NA> <NA> NACC_… <NA> <NA> <NA> <NA>
#> # ℹ abbreviated name: ¹`Data Freeze variable name`
#> # ℹ 5 more variables: `Description / derivation` <chr>, Form <chr>, VariableType <chr>, DataType <chr>, `Source variable` <chr>File manifest
A complete file manifest of all the source files used to build the package is also stored in the package (file_manifest):
Code
file_manifest %>%
datatable(., paging = TRUE)