Tutorial for source localization of resting EEG?

Dear MNE experts,

I am wondering if we have any tutorial for source localization of resting EEG with MNE? I have 64-channel resting EEG data of 5 min and want to do some theta-gamma coupling analysis after source localization (so I need signal within 1-100 Hz range). I guess I have to split the 5 min into epochs since it is too large to invert. Do we have any recommendations on splitting resting EEG data? What could be an ideal length for each epoch?

Thank you!
Liwei

1 Like

i have the same question

Most source localization algorithms have inherently no dependency on time, for example, sLORETA or dSPM. There are some which do, like the mixed norm in time and space (MxNE) or a weighted entropy on the mean (wMEM). So in principle, you could epoch them in any way, given that you use the algorithms that return an operator, without loss of information.

Subsequently, you can use the generator argument of the minimum_norm_apply_inverse_epochs to limit the amount of data in memory. (mne.minimum_norm.apply_inverse_epochs β€” MNE 0.14.1 documentation)

1 Like

In addition to the solid answer by @SBeumer, you can also look at applying the inverse to the β€œraw” unsegmented time series: mne.minimum_norm.apply_inverse_raw

Raw here could still be considerably well cleaned data.

2 Likes