Veillette2019: EEG dataset#
Dataset from OpenNeuro.
Access recordings and metadata through EEGDash.
Citation: Unknown (—). **.
Modality: — Subjects: — Recordings: — License: — Source: OpenNeuro
Metadata: Limited (0%)
Quickstart#
Install
pip install eegdash
Access the data
from eegdash.dataset import Veillette2019
dataset = Veillette2019(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)
Filter by subject
dataset = Veillette2019(cache_dir="./data", subject="01")
Advanced query
dataset = Veillette2019(
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{veillette2019,
}
About This Dataset#
No README content is available for this dataset.
Dataset Information#
Dataset ID |
|
Title |
— |
Author (year) |
— |
Canonical |
— |
Importable as |
|
Year |
— |
Authors |
Unknown |
License |
— |
Citation / DOI |
Unknown |
Source links |
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: —
Recordings: —
Tasks: —
Channels: Varies
Sampling rate (Hz): Varies
Duration (hours): Not calculated
Pathology: Not specified
Modality: —
Type: —
Size on disk: —
File count: —
Format: BIDS
License: See source
DOI: —
Source: OpenNeuro
OpenNeuro: veillette2019
NeMAR: veillette2019
API Reference#
Use the Veillette2019 class to access this dataset programmatically.
See Also#
eegdash.dataset.EEGDashDataseteegdash.dataset