We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec0ddc commit fae0eadCopy full SHA for fae0ead
examples/convert_group_studies.py
@@ -50,7 +50,7 @@
50
run_map = dict(zip(runs, range(1, 4)))
51
52
for subject_id in subject_ids:
53
- eegbci.load_data(subject=subject_id, runs=runs, update_path=True)
+ eegbci.load_data(subjects=subject_id, runs=runs, update_path=True)
54
55
# get path to MNE directory with the downloaded example data
56
mne_data_dir = mne.get_config("MNE_DATASETS_EEGBCI_PATH")
@@ -81,7 +81,7 @@
81
bids_list = list()
82
83
for run in runs:
84
- raw_fname = eegbci.load_data(subject=subject_id, runs=run)[0]
+ raw_fname = eegbci.load_data(subjects=subject_id, runs=run)[0]
85
raw = mne.io.read_raw_edf(raw_fname)
86
raw.info["line_freq"] = 50 # specify power line frequency
87
raw_list.append(raw)
0 commit comments