DS003690#
EEG, ECG and pupil data from young and older adults: rest and auditory cued reaction time tasks
Access recordings and metadata through EEGDash.
Citation: Maria J. Ribeiro, Miguel Castelo-Branco (2021). EEG, ECG and pupil data from young and older adults: rest and auditory cued reaction time tasks. 10.18112/openneuro.ds003690.v1.0.0
Modality: eeg Subjects: 75 Recordings: 2630 License: CC0 Source: openneuro Citations: 5.0
Metadata: Complete (100%)
Quickstart#
Install
pip install eegdash
Access the data
from eegdash.dataset import DS003690
dataset = DS003690(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)
Filter by subject
dataset = DS003690(cache_dir="./data", subject="01")
Advanced query
dataset = DS003690(
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{ds003690,
title = {EEG, ECG and pupil data from young and older adults: rest and auditory cued reaction time tasks},
author = {Maria J. Ribeiro and Miguel Castelo-Branco},
doi = {10.18112/openneuro.ds003690.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds003690.v1.0.0},
}
About This Dataset#
Age-related differences in EEG, ECG and pupilography during auditory cued reaction time tasks
In this study, we acquired the electroencephalogram (EEG), pupilogram and electrocardiogram (ECG) while a group of young (N = 36) and a group of older (N = 39) adults were engaged in auditory cued reaction time tasks (active tasks) or passively listening to the auditory stimulus used as temporal cue, presented with the same frequency as in the active tasks (passive task - 4 minutes acquired at the beginning of the session).
The active tasks were a cued simple reaction time task and a cued go/no-go task. In the active tasks, 16% of the trials were cue only trials (the cue was presented but no target followed).
The order of the active tasks was counterbalanced across participants and were acquired in two runs of 8 minutes per task. In each task, we acquired 120 trials. In the simple reaction time task, 100 trials were cue-target trials and 20 trials were cue-only. In the go/no-go task, 80 trials were cue-go trials, 20 were cue-no-go trials, and 20 trials were cue-only trials.
Participants were fixating a grey computer screen with a lighter grey fixation cross at the center. The auditory stimuli were single-frequency signals (pure tones) with duration 250 ms, with the following frequencies: cue 1500 Hz; go stimulus 1700 Hz; no-go stimulus 1300 Hz; and error feedback signal 1000 Hz.
The sounds were played at around 67 dB(A) from a hi-fi speakers system. All stimuli were suprathreshold.
EEG signal was recorded using a 64-channel Neuroscan system with scalp electrodes placed according to the International 10-20 electrode placement standard, with reference between the electrodes CPz and Cz and ground between FPz and Fz. Acquisition rate was 500 Hz. Vertical and horizontal electrooculograms were recorded to monitor eye movements and blinks. Bipolar electrocardiogram (ECG) electrodes were placed on the chest. During data acquisition, the participants head was stabilized with a chin and forehead rest. Consequently, the electrodes on the forehead, FP1, FPz, and FP2, displayed signal fluctuation artifacts due to the pressure on the forehead rest. These were excluded from the recordings.
Electrode positions were measured using a 3D-digitizer Fastrak (Polhemus, VT, USA) and imported into the EEGLAB files.
Pupil data was acquired with iView X Hi-Speed 1250 system from SMI with a sampling rate of 240 Hz. Pupil data was imported into the EEG dataset with the EYE-EEG EEGLAB plugin.
Synchronized EEG, ECG and pupil data are included in separate channels in the EEGLAB .set files.
Dataset Information#
Dataset ID |
|
Title |
EEG, ECG and pupil data from young and older adults: rest and auditory cued reaction time tasks |
Year |
2021 |
Authors |
Maria J. Ribeiro, Miguel Castelo-Branco |
License |
CC0 |
Citation / DOI |
|
Source links |
OpenNeuro | NeMAR | Source URL |
Copy-paste BibTeX
@dataset{ds003690,
title = {EEG, ECG and pupil data from young and older adults: rest and auditory cued reaction time tasks},
author = {Maria J. Ribeiro and Miguel Castelo-Branco},
doi = {10.18112/openneuro.ds003690.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds003690.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: 75
Recordings: 2630
Tasks: 3
Channels: 61 (375), 66 (365), 64 (10)
Sampling rate (Hz): 500.0
Duration (hours): 0.0
Pathology: Not specified
Modality: —
Type: —
Size on disk: 21.5 GB
File count: 2630
Format: BIDS
License: CC0
DOI: 10.18112/openneuro.ds003690.v1.0.0
API Reference#
Use the DS003690 class to access this dataset programmatically.
- class eegdash.dataset.DS003690(cache_dir: str, query: dict | None = None, s3_bucket: str | None = None, **kwargs)[source]#
Bases:
EEGDashDatasetOpenNeuro dataset
ds003690. Modality:eeg; Experiment type:Decision-making; Subject type:Healthy. Subjects: 75; recordings: 375; tasks: 3.- 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/ds003690 NeMAR dataset: https://nemar.org/dataexplorer/detail?dataset_id=ds003690
Examples
>>> from eegdash.dataset import DS003690 >>> dataset = DS003690(cache_dir="./data") >>> recording = dataset[0] >>> raw = recording.load()
See Also#
eegdash.dataset.EEGDashDataseteegdash.dataset