Skip to content

Instantly share code, notes, and snippets.

@humbdrag
Created January 13, 2022 11:04
Show Gist options
  • Save humbdrag/f8c1084ea82a6353ab2b595c0393823d to your computer and use it in GitHub Desktop.
Save humbdrag/f8c1084ea82a6353ab2b595c0393823d to your computer and use it in GitHub Desktop.
Load a sample MEG dataset
import os
import mne
sample_data_folder = mne.datasets.sample.data_path()
sample_data_raw_file = os.path.join(
sample_data_folder, 'MEG', 'sample', 'sample_audvis_filt-0-40_raw.fif')
raw = mne.io.read_raw_fif(sample_data_raw_file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment