DS006801#

Resting-state EEG before and after different study methods

Access recordings and metadata through EEGDash.

Citation: Paloma Victoria de Sales Alves, Antonio Simeão Sobrinho Neto, Carla Alexandra da Silva Moita Minervino (2025). Resting-state EEG before and after different study methods. 10.18112/openneuro.ds006801.v1.0.0

Modality: eeg Subjects: 21 Recordings: 173 License: CC0 Source: openneuro

Metadata: Complete (100%)

Quickstart#

Install

pip install eegdash

Access the data

from eegdash.dataset import DS006801

dataset = DS006801(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)

Filter by subject

dataset = DS006801(cache_dir="./data", subject="01")

Advanced query

dataset = DS006801(
    cache_dir="./data",
    query={"subject": {"$in": ["01", "02"]}},
)

Iterate recordings

for rec in dataset:
    print(rec.subject, rec.raw.info['sfreq'])

If you use this dataset in your research, please cite the original authors.

BibTeX

@dataset{ds006801,
  title = {Resting-state EEG before and after different study methods},
  author = {Paloma Victoria de Sales Alves and Antonio Simeão Sobrinho Neto and Carla Alexandra da Silva Moita Minervino},
  doi = {10.18112/openneuro.ds006801.v1.0.0},
  url = {https://doi.org/10.18112/openneuro.ds006801.v1.0.0},
}

About This Dataset#

The RECAP-EEG: Retrieval with Feedback and Cognitive Adaptation EEG Dataset provides an open-access collection of human electroencephalography (EEG) recordings aimed at investigating the neural correlates of learning processes in educational contexts. The study involved 21 neurotypical undergraduate students (mean age = 23.10 years, SD = 3.92) and was conducted at the Federal University of Paraíba (UFPB), Brazil. Participants were randomly assigned to one of three experimental groups through an automated Python v3.12.7 script that ensured continuous balance among groups. In the active learning group, participants completed a review session using the NeuroShow platform, which consisted of 10 retrieval-practice questions with immediate feedback after each response. In the passive learning group, participants performed a review session based on their own notes taken during the lecture. In the control group, participants watched the same lecture but did not perform any review activity. Before data collection, all participants received detailed written instructions recommending that they avoid consuming caffeine or alcohol for at least 12 hours before the session, maintain a good night’s sleep, and have a proper breakfast on the morning of the experiment. Sessions were scheduled to start at 9:00 a.m., with a maximum delay tolerance of 15 minutes. Upon arrival at the laboratory, participants were briefed about the procedures specific to their group and were given the opportunity to ask questions before the experiment began. The first EEG recording (pre-intervention) was then performed, followed by the respective study condition for each group (active, passive, or control), and finally the second EEG recording (post-intervention). EEG signals were recorded using a 32-channel ActiChamp system (Brain Products GmbH, Germany) with active silver/silver chloride (Ag/AgCl) electrodes positioned according to the international 10–20 system. Electrode impedance was kept below 15 kΩ, with the ground at Fpz. Signals were sampled at 500 Hz, filtered between 0.5 and 50 Hz, and recorded at two time points: before and immediately after the study session. Each session lasted approximately nine minutes, comprising four blocks: two eyes-open blocks (2 minutes and 15 seconds each) and two eyes-closed blocks (2 minutes and 15 seconds each). The raw EEG data are organized in compliance with the BIDS (Brain Imaging Data Structure) standard and include .vhdr, .eeg, and .vmrk files, as well as the required metadata and descriptive files. Signal quality was ensured through impedance control and power spectral density (PSD) analysis, which confirmed the integrity and consistency of the recordings. The RECAP-EEG dataset may contribute to research in cognitive neuroscience and learning, particularly studies on retrieval practice with feedback, attentional modulation, and functional reorganization associated with active learning. It also supports interdisciplinary investigations in educational neuroscience, cognitive training, and neural modeling of learning and memory processes. The study was approved by the Research Ethics Committee of the Health Sciences Center at the Federal University of Paraíba (CCS/UFPB) under CAAE number 84958824.1.0000.5188 and approval number 7.400.264. All participants provided written informed consent prior to participation. The data are released under the Creative Commons Attribution 4.0 International License (CC BY 4.0), which permits unrestricted use, distribution, and reproduction provided that proper credit is given to the original authors.

Dataset Information#

Dataset ID

DS006801

Title

Resting-state EEG before and after different study methods

Year

2025

Authors

Paloma Victoria de Sales Alves, Antonio Simeão Sobrinho Neto, Carla Alexandra da Silva Moita Minervino

License

CC0

Citation / DOI

doi:10.18112/openneuro.ds006801.v1.0.0

Source links

OpenNeuro | NeMAR | Source URL

Copy-paste BibTeX
@dataset{ds006801,
  title = {Resting-state EEG before and after different study methods},
  author = {Paloma Victoria de Sales Alves and Antonio Simeão Sobrinho Neto and Carla Alexandra da Silva Moita Minervino},
  doi = {10.18112/openneuro.ds006801.v1.0.0},
  url = {https://doi.org/10.18112/openneuro.ds006801.v1.0.0},
}

Found an issue with this dataset?

If you encounter any problems with this dataset (missing files, incorrect metadata, loading errors, etc.), please let us know!

Report an Issue on GitHub

Technical Details#

Subjects & recordings
  • Subjects: 21

  • Recordings: 173

  • Tasks: 1

Channels & sampling rate
  • Channels: 31

  • Sampling rate (Hz): 500.0

  • Duration (hours): 0.0

Tags
  • Pathology: Healthy

  • Modality: Resting State

  • Type: Learning

Files & format
  • Size on disk: 1.3 GB

  • File count: 173

  • Format: BIDS

License & citation
  • License: CC0

  • DOI: doi:10.18112/openneuro.ds006801.v1.0.0

Provenance

API Reference#

Use the DS006801 class to access this dataset programmatically.

class eegdash.dataset.DS006801(cache_dir: str, query: dict | None = None, s3_bucket: str | None = None, **kwargs)[source]#

Bases: EEGDashDataset

OpenNeuro dataset ds006801. Modality: eeg; Experiment type: Learning; Subject type: Healthy. Subjects: 21; recordings: 42; 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. query supports MongoDB-style filters on fields in ALLOWED_QUERY_FIELDS and is combined with the dataset filter. Dataset-specific caveats are not provided in the summary metadata.

References

OpenNeuro dataset: https://openneuro.org/datasets/ds006801 NeMAR dataset: https://nemar.org/dataexplorer/detail?dataset_id=ds006801

Examples

>>> from eegdash.dataset import DS006801
>>> dataset = DS006801(cache_dir="./data")
>>> recording = dataset[0]
>>> raw = recording.load()
__init__(cache_dir: str, query: dict | None = None, s3_bucket: str | None = None, **kwargs)[source]#
save(path, overwrite=False)[source]#

Save the dataset to disk.

Parameters:
  • path (str or Path) – Destination file path.

  • overwrite (bool, default False) – If True, overwrite existing file.

Return type:

None

See Also#