Mne Bids Pipeline Here
evoked_diff = mne.combine_evoked([evoked_face, evoked_car], weights=[1, -1]) evoked_diff.plot_joint(title='Face - Car')
: MNE-Python provides functionalities to convert the preprocessed data into the BIDS format. This includes organizing data into specific folders and creating sidecar files with metadata. mne bids pipeline
It enforces the use of BIDS, ensuring that datasets are organized consistently across different labs and studies. evoked_diff = mne
: The initial step involves importing or loading data into MNE-Python. MNE supports various data formats, including FIF (used by the Neuromag systems), EEGLAB, and more. evoked_diff = mne.combine_evoked([evoked_face
stc = mne.minimum_norm.apply_inverse( evoked_face, inverse_operator, lambda2=1/9., method='dSPM' )
# config.yaml subjects: ['001', '002', '003'] task: 'visual' preprocessing: l_freq: 0.1 h_freq: 40 notch: 50 epochs: tmin: -0.2 tmax: 0.8 baseline: [-0.2, 0]