eegdash.dataset.DS005059#
participants.tsv (OpenNeuro ds005059). Access recordings and metadata through EEGDash.
Modality: [‘ieeg’] Tasks: 0 License: CC0 Subjects: 0 Recordings: 0 Source: openneuro
Dataset Information#
Dataset ID |
|
Title |
participants.tsv |
Year |
2024 |
Authors |
Haydn G. Herrema, Michael J. Kahana |
License |
CC0 |
Citation / DOI |
|
Source links |
OpenNeuro | NeMAR | Source URL |
Copy-paste BibTeX
@dataset{ds005059,
title = {participants.tsv},
author = {Haydn G. Herrema and Michael J. Kahana},
doi = {10.18112/openneuro.ds005059.v1.0.6},
url = {https://doi.org/10.18112/openneuro.ds005059.v1.0.6},
}
Highlights#
Subjects: 0
Recordings: 0
Tasks: 0
Channels: 84 (3), 110 (10), 146, 177, 133, 90, 107 (3), 149 (2), 52, 55 (3), 67, 130 (4), 116 (7), 188 (3), 117 (3), 115 (2), 112 (22), 98, 140 (4), 87 (3), 77, 94 (5), 99, 72 (8), 58 (3), 73 (2), 122 (2), 139 (4), 173 (3), 76, 118 (2), 60, 96 (4), 68 (4), 141 (2), 108 (3), 92 (6), 138 (2), 119 (5), 100 (9), 120 (3), 93, 14, 123 (4), 114 (3), 121 (7), 126 (15), 53, 142 (6), 64 (8), 88 (9), 86 (4), 97 (5), 111 (2), 80 (3), 104 (9), 128 (10), 16, 85 (11), 95 (5), 83 (3), 74 (3), 124 (4), 46, 186 (8), 102 (7), 106 (4)
Sampling rate (Hz): 1000.0 (193), 499.7071 (6), 500.0 (71), 1600.0 (4), 1024.0 (8)
Duration (hours): 0
Tasks: 0
Experiment type: Unknown
Subject type: Unknown
Size on disk: Unknown
File count: Unknown
Format: Unknown
License: CC0
DOI: doi:10.18112/openneuro.ds005059.v1.0.6
Quickstart#
Install
pip install eegdash
Load a recording
from eegdash.dataset import DS005059
dataset = DS005059(cache_dir="./data")
recording = dataset[0]
raw = recording.load()
Filter/query
dataset = DS005059(cache_dir="./data", subject="01")
dataset = DS005059(
cache_dir="./data",
query={"subject": {"$in": ["01", "02"]}},
)
Quality & caveats#
No dataset-specific caveats are listed in the available metadata.
API#
- class eegdash.dataset.DS005059(cache_dir: str, query: dict | None = None, s3_bucket: str | None = None, **kwargs)[source]#
Bases:
EEGDashDatasetOpenNeuro dataset
ds005059. Modality:ieeg; Experiment type:Unknown; Subject type:Unknown. Subjects: 69; recordings: 282; 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/ds005059 NeMAR dataset: https://nemar.org/dataexplorer/detail?dataset_id=ds005059 DOI: https://doi.org/10.18112/openneuro.ds005059.v1.0.6
Examples
>>> from eegdash.dataset import DS005059 >>> dataset = DS005059(cache_dir="./data") >>> recording = dataset[0] >>> raw = recording.load()
See Also#
eegdash.dataset.EEGDashDataseteegdash.dataset