.. This file is auto-generated during the Sphinx build. Do not edit by hand; changes will be overwritten. eegdash.dataset.DS005307 ======================== .. currentmodule:: eegdash.dataset .. autoclass:: eegdash.dataset.DS005307 :members: :undoc-members: :show-inheritance: :inherited-members: :member-order: bysource Dataset Information ------------------- - **Dataset ID:** ``DS005307`` - **Number of Subjects:** 7 - **Number of Recordings:** 73 - **Number of Tasks:** 1 - **Number of Channels:** 72,104 - **Sampling Frequencies:** 10000 - **Total Duration (hours):** 1.335 - **Dataset Size:** 18.59 GB - **OpenNeuro:** `ds005307 `__ - **NeMAR:** `ds005307 `__ ========= ======= ======= ========== ========== ============= ======== dataset #Subj #Chan #Classes Freq(Hz) Duration(H) Size ========= ======= ======= ========== ========== ============= ======== ds005307 7 72,104 1 10000 1.335 18.59 GB ========= ======= ======= ========== ========== ============= ======== Usage Example ------------- .. code-block:: python from eegdash.dataset import DS005307 dataset = DS005307(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 `__