Data Structure Overview🔗
The HBCD dataset follows NBDC data structure standards established as part of the ABCD Study (see details), which incorporates the Brain Imaging Data Structure (BIDS) wherever possible for cross-study consistency. At a high level, data are organized into two categories: tabulated and file-based data.
Tabulated Data
Data across all participants organized tidy tables following a standard format with one row per participant session and one column per variable.
Includes: Demographics, behavioral/phenotypic questionnaires, and select tabulated pipeline derivatives.
See detailed documentation →
File-Based Data
File-based data is an umbrella term for all other data that isn't tabulated, typically required due to the complex or multidimensional nature of certain data modalities. File-based data are in varied, modality-specific formats.
Includes: Raw (raw BIDS) and processed derivatives for imaging, EEG, and wearable sensor recording data (organized under separate subject session-level folders) and concatenated data aggregated across participants for certain modalities (e.g., genomnics).
See detailed documentation →
Folder Structure🔗
The following conventions are used to improve readability of file tree diagrams throughout this site:
- File prefixes
sub-[ID]_ses-[V0X]are often replaced with*for brevity - Square brackets
[ ]indicate placeholders with many possible values that are not exhaustively listed, e.g.,sub-[ID] - Curly brackets
{ }indicate a defined set of all included values. These values are either listed directly inside the brackets (separated by|) or defined in a Label Values Legend below the file tree. - Sidecar JSON files are either omitted or indicated by marking corresponding data files with
(+JSON)for brevity. - Some pipelines generate an
.htmlvisual summary report for quality assessment. These reports source images from afigures/directory within the derivatives folder. The contents offigures/are not listed for brevity.
hbcd/ ├── rawdata/ │ ├── phenotype/ # Tabulated data (demographics, behavior, etc.) │ │ └── [INSTRUMENT_NAME].tsv │ │ │ ├── sub-[ID]/ # Raw BIDS with modality-specific subfolders (MRI/MRS, EEG, biosensors) │ │ ├── ses-[V0X]/ │ │ │ ├── anat/ │ │ │ ├── dwi/ │ │ │ ├── eeg/ │ │ │ ├── ... │ │ │ └── sub-[ID]_ses-[V0X]_scans.tsv │ │ └── sub-[ID]_sessions.tsv │ │ │ ├── dataset_description.json # Dataset-level metadata │ └── participants.tsv │ ├── derivatives/ # Processed outputs by pipeline │ └── {PIPELINE_NAME}/ │ └── sub-[ID]/ │ └── ses-[V0X]/ # Mirrors rawdata structure │ └── concatenated/ # Aggregated cross-subject datasets ├── genetics/ ├── geocoding/ └── study_navigator/
Tabulated Pipeline Derivatives🔗
Processing pipelines for imaging, EEG, and wearable sensor recordings output derivative files to separate subject- and session-specific directories. Whenever possible, derivative data is combined across participants to additionally provide a single file in the tabulated data. Users may choose to use either the file-based or tabulated data for their analyses depending on their needs. See filenaming conventions for tabulated derivatives under naming convention exceptions here.
Not all processed data are available in tabulated form. Tabulated datasets have one row per participant/session, so only derivatives that can be summarized into a single row/column structure are tabulated. If no tabulated file exists for the derivatives you need, you will need to use the file-based data.