.. This file is auto-generated during the Sphinx build. Do not edit by hand; changes will be overwritten. eegdash.dataset.DS005207 ======================== .. currentmodule:: eegdash.dataset .. autoclass:: eegdash.dataset.DS005207 :members: :undoc-members: :show-inheritance: :inherited-members: :member-order: bysource Dataset Information ------------------- - **Dataset ID:** ``DS005207`` - **Summary:** Modality: Sleep | Type: Sleep | Subjects: Healthy - **Number of Subjects:** 20 - **Number of Recordings:** 39 - **Number of Tasks:** 1 - **Number of Channels:** 6,10,12,14,15,16,17,18 - **Sampling Frequencies:** 128,250 - **Total Duration (hours):** 422.881 - **Dataset Size:** 69.12 GB - **OpenNeuro:** `ds005207 `__ - **NeMAR:** `ds005207 `__ ========= ======= ====================== ========== ========== ============= ======== dataset #Subj #Chan #Classes Freq(Hz) Duration(H) Size ========= ======= ====================== ========== ========== ============= ======== ds005207 20 6,10,12,14,15,16,17,18 1 128,250 422.881 69.12 GB ========= ======= ====================== ========== ========== ============= ======== Usage Example ------------- .. code-block:: python from eegdash.dataset import DS005207 dataset = DS005207(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 `__