.. This documentation page is generated during the Sphinx build. The underlying code is manually maintained and not autogenerated. eegdash.dataset.DS007081 ======================== participants.tsv (OpenNeuro ``ds007081``). Access recordings and metadata through EEGDash. .. rst-class:: sd-badges :bdg-primary:`Modality: eeg` :bdg-info:`Tasks: 1` :bdg-secondary:`Subjects: 41` :bdg-secondary:`Recordings: 41` .. rst-class:: sd-badges :bdg-success:`License: CC0` :bdg-warning:`Source: openneuro` Dataset Information ------------------- .. list-table:: :widths: 25 75 :header-rows: 0 * - Dataset ID - ``DS007081`` * - Title - participants.tsv * - Year - 2025 * - Authors - Yakup Yılmaz, Nursena Ataseven Özdemir, Wouter Kruijne, Elkan Akyürek, Eren Günseli * - License - CC0 * - Citation / DOI - `doi:10.18112/openneuro.ds007081.v1.0.0 `__ * - Source links - `OpenNeuro `__ | `NeMAR `__ | `Source URL `__ .. dropdown:: Copy-paste BibTeX :class-container: sd-shadow-sm :class-title: sd-bg-light .. code-block:: bibtex @dataset{ds007081, title = {participants.tsv}, author = {Yakup Yılmaz and Nursena Ataseven Özdemir and Wouter Kruijne and Elkan Akyürek and Eren Günseli}, doi = {10.18112/openneuro.ds007081.v1.0.0}, url = {https://doi.org/10.18112/openneuro.ds007081.v1.0.0}, } Highlights ---------- .. grid:: 1 2 3 3 :gutter: 2 .. grid-item-card:: Subjects & recordings :class-card: sd-border-1 - Subjects: 41 - Recordings: 41 - Tasks: 1 .. grid-item-card:: Channels & sampling rate :class-card: sd-border-1 - Channels: 32 - Sampling rate (Hz): 1000.0 - Duration (hours): 0.0 .. grid-item-card:: Tasks & conditions :class-card: sd-border-1 - Tasks: 1 - Experiment type: — - Subject type: — .. grid-item-card:: Files & format :class-card: sd-border-1 - Size on disk: 11.3 GB - File count: 41 - Format: BIDS .. grid-item-card:: License & citation :class-card: sd-border-1 - License: CC0 - DOI: doi:10.18112/openneuro.ds007081.v1.0.0 .. grid-item-card:: Provenance :class-card: sd-border-1 - Source: openneuro - OpenNeuro: `ds007081 `__ - NeMAR: `ds007081 `__ Quickstart ---------- **Install** .. code-block:: bash pip install eegdash **Access the data** .. code-block:: python from eegdash.dataset import DS007081 dataset = DS007081(cache_dir="./data") # Get the raw object of the first recording raw = dataset.datasets[0].raw print(raw.info) **Filter/query** .. tab-set:: .. tab-item:: Basic .. code-block:: python dataset = DS007081(cache_dir="./data", subject="01") .. tab-item:: Advanced .. code-block:: python dataset = DS007081( cache_dir="./data", query={"subject": {"$in": ["01", "02"]}}, ) Quality & caveats ----------------- - No dataset-specific caveats are listed in the available metadata. API --- .. currentmodule:: eegdash.dataset .. autoclass:: eegdash.dataset.DS007081 :members: __init__, save :show-inheritance: :member-order: bysource See Also -------- * :class:`eegdash.dataset.EEGDashDataset` * :mod:`eegdash.dataset` * `OpenNeuro dataset page `__ * `NeMAR dataset page `__