DS007020#
EEG Mortality Dataset in Parkinson’s Disease
Access recordings and metadata through EEGDash.
Citation: Simin Jamshidi, Arturo Espinoza, Soura Dasgupta, Nandakumar Narayanan (2025). EEG Mortality Dataset in Parkinson’s Disease. 10.18112/openneuro.ds007020.v1.0.0
Modality: eeg Subjects: 94 Recordings: 945 License: CC0 Source: openneuro
Metadata: Complete (100%)
Quickstart#
Install
pip install eegdash
Access the data
from eegdash.dataset import DS007020
dataset = DS007020(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)
Filter by subject
dataset = DS007020(cache_dir="./data", subject="01")
Advanced query
dataset = DS007020(
cache_dir="./data",
query={"subject": {"$in": ["01", "02"]}},
)
Iterate recordings
for rec in dataset:
print(rec.subject, rec.raw.info['sfreq'])
If you use this dataset in your research, please cite the original authors.
BibTeX
@dataset{ds007020,
title = {EEG Mortality Dataset in Parkinson's Disease},
author = {Simin Jamshidi and Arturo Espinoza and Soura Dasgupta and Nandakumar Narayanan},
doi = {10.18112/openneuro.ds007020.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds007020.v1.0.0},
}
About This Dataset#
This dataset contains de-identified resting-state EEG recordings from individuals with Parkinson’s disease (PD) and age-matched healthy control subjects. All EEG data were recorded using standard clinical EEG systems at Neurology Clinic. Dataset Purpose: This dataset was originally used to evaluate whether resting-state EEG can help distinguish subjects who were later deceased from those who remained living (mortality classification). Only de-identified EEG data and mortality labels are included.
Participant Information: - Participants are labeled as either “living” or “deceased” in participants.tsv - No other demographic or clinical information (age, cognition, UPDRS, disease duration, etc.) is included per data-sharing guidelines. - All participant IDs are anonymized following BIDS convention (e.g., sub-PD1301).
EEG Acquisition Details:
View full README
This dataset contains de-identified resting-state EEG recordings from individuals with Parkinson’s disease (PD) and age-matched healthy control subjects. All EEG data were recorded using standard clinical EEG systems at Neurology Clinic. Dataset Purpose: This dataset was originally used to evaluate whether resting-state EEG can help distinguish subjects who were later deceased from those who remained living (mortality classification). Only de-identified EEG data and mortality labels are included.
Participant Information: - Participants are labeled as either “living” or “deceased” in participants.tsv - No other demographic or clinical information (age, cognition, UPDRS, disease duration, etc.) is included per data-sharing guidelines. - All participant IDs are anonymized following BIDS convention (e.g., sub-PD1301).
EEG Acquisition Details: - Recording type: Resting-state EEG (eyes open) - Device: Clinical BrainVision EEG system - File formats: .vhdr, .eeg, .vmrk - Sampling rate: 500 Hz - Montage: Standard 10–20 international system - Recording condition: “task-rest” (no task)
Data Organization: Data are structured following the BIDS (Brain Imaging Data Structure) EEG standard:
- sub-<ID>/
- ses-01/
- eeg/
sub-<ID>_ses-01_task-rest_eeg.vhdr sub-<ID>_ses-01_task-rest_eeg.eeg sub-<ID>_ses-01_task-rest_eeg.vmrk
Mortality Label Format: - Living subjects: survival_status = “living” - Deceased subjects: survival_status = “deceased”
Ethics & Privacy: All subjects provided consent for EEG recording at the University of Iowa Hospitals and Clinics. The publicly shared version here is fully de-identified and contains no clinical or personal health information other than mortality classification.
Suggested Use: This dataset can be used to explore EEG biomarkers of mortality risk, EEG signal characteristics in PD, or to build machine learning models for classification.
Questions or requests: Please contact nandakumar-narayanan@uiowa.edu.
Dataset Information#
Dataset ID |
|
Title |
EEG Mortality Dataset in Parkinson’s Disease |
Year |
2025 |
Authors |
Simin Jamshidi, Arturo Espinoza, Soura Dasgupta, Nandakumar Narayanan |
License |
CC0 |
Citation / DOI |
|
Source links |
OpenNeuro | NeMAR | Source URL |
Copy-paste BibTeX
@dataset{ds007020,
title = {EEG Mortality Dataset in Parkinson's Disease},
author = {Simin Jamshidi and Arturo Espinoza and Soura Dasgupta and Nandakumar Narayanan},
doi = {10.18112/openneuro.ds007020.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds007020.v1.0.0},
}
Found an issue with this dataset?
If you encounter any problems with this dataset (missing files, incorrect metadata, loading errors, etc.), please let us know!
Technical Details#
Subjects: 94
Recordings: 945
Tasks: 1
Channels: 63 (170), 64 (18)
Sampling rate (Hz): 500.0
Duration (hours): 0.0
Pathology: Parkinson’s
Modality: Resting State
Type: Clinical/Intervention
Size on disk: 1.7 GB
File count: 945
Format: BIDS
License: CC0
DOI: doi:10.18112/openneuro.ds007020.v1.0.0
API Reference#
Use the DS007020 class to access this dataset programmatically.
- class eegdash.dataset.DS007020(cache_dir: str, query: dict | None = None, s3_bucket: str | None = None, **kwargs)[source]#
Bases:
EEGDashDatasetOpenNeuro dataset
ds007020. Modality:eeg; Experiment type:Clinical/Intervention; Subject type:Parkinson's. Subjects: 94; recordings: 94; tasks: 1.- Parameters:
cache_dir (str | Path) – Directory where data are cached locally.
query (dict | None) – Additional MongoDB-style filters to AND with the dataset selection. Must not contain the key
dataset.s3_bucket (str | None) – Base S3 bucket used to locate the data.
**kwargs (dict) – Additional keyword arguments forwarded to
EEGDashDataset.
- data_dir#
Local dataset cache directory (
cache_dir / dataset_id).- Type:
Path
- query#
Merged query with the dataset filter applied.
- Type:
dict
- records#
Metadata records used to build the dataset, if pre-fetched.
- Type:
list[dict] | None
Notes
Each item is a recording; recording-level metadata are available via
dataset.description.querysupports MongoDB-style filters on fields inALLOWED_QUERY_FIELDSand is combined with the dataset filter. Dataset-specific caveats are not provided in the summary metadata.References
OpenNeuro dataset: https://openneuro.org/datasets/ds007020 NeMAR dataset: https://nemar.org/dataexplorer/detail?dataset_id=ds007020
Examples
>>> from eegdash.dataset import DS007020 >>> dataset = DS007020(cache_dir="./data") >>> recording = dataset[0] >>> raw = recording.load()
See Also#
eegdash.dataset.EEGDashDataseteegdash.dataset