.. This file is auto-generated during the Sphinx build. Do not edit by hand; changes will be overwritten. eegdash.dataset.DS005815 ======================== .. currentmodule:: eegdash.dataset .. autoclass:: eegdash.dataset.DS005815 :members: :undoc-members: :show-inheritance: :inherited-members: :member-order: bysource Dataset Information ------------------- - **Dataset ID:** ``DS005815`` - **Number of Subjects:** 26 - **Number of Recordings:** 137 - **Number of Tasks:** 4 - **Number of Channels:** 30 - **Sampling Frequencies:** 1000,500 - **Total Duration (hours):** 38.618 - **Dataset Size:** 9.91 GB - **OpenNeuro:** `ds005815 `__ - **NeMAR:** `ds005815 `__ ========= ======= ======= ========== ========== ============= ======= dataset #Subj #Chan #Classes Freq(Hz) Duration(H) Size ========= ======= ======= ========== ========== ============= ======= ds005815 26 30 4 1000,500 38.618 9.91 GB ========= ======= ======= ========== ========== ============= ======= Usage Example ------------- .. code-block:: python from eegdash.dataset import DS005815 dataset = DS005815(cache_dir="./data") print(f"Number of recordings: {len(dataset)}") if len(dataset): recording = dataset[0] raw = recording.load() print(f"Sampling rate: {raw.info['sfreq']} Hz") print(f"Channels: {len(raw.ch_names)}") See Also -------- * :class:`eegdash.dataset.EEGDashDataset` * :mod:`eegdash.dataset` * `OpenNeuro dataset page `__ * `NeMAR dataset page `__