Frequency range used for source localization

Dear MNE users, here is an example of source localization with MNE

https://mne.tools/0.16/auto_tutorials/plot_mne_dspm_source_localization.html

from raw MEG data which frequency band is used in this example, do you know about it? For example, 0 - 50 Hz? I would like to know which frequency band is used in this example. Thanks,

Kyu

NOTE: the page you linked to is for a very old version of MNE-Python. Here is the current version of that tutorial: Source localization with MNE/dSPM/sLORETA/eLORETA β€” MNE 0.23.0 documentation

The raw data file used in that tutorial has been band-pass filtered from 0.1 Hz to 40 Hz. This can be partially inferred from the filename (which includes _filt_0_40) but it’s not clearly stated in the tutorial. You can also figure it out by looking at raw.info['highpass'] and raw.info['lowpass']

I see. Dan, Thank you so much for your support! Kyu