Explore Brain DatasetsΒΆ
Browse all brain datasets accessible through neuralfetch. Filter by modality and click column headers to sort. Datasets with a βΆ sample badge have a ready-to-run lightweight version β see Sample Datasets.
Download a DatasetΒΆ
Pass any study name to ns.Study to download and load it:
import neuralset as ns
study = ns.Study(name="Grootswagers2022Human", path="./data")
study.download() # fetch raw files from source repository
events = study.run() # returns a tidy events DataFrame
Datasets marked βΆ sample have a lightweight variant you can run immediately without downloading the full dataset:
import neuralset as ns
study = ns.Study(name="Grootswagers2022HumanSample", path="./data")
study.download() # downloads a small subset
events = study.run() # returns a tidy events DataFrame
See Sample Datasets for all sample datasets with ready-to-paste snippets, or API Reference for the full API reference.