- MNE version: 1.8.0
- operating system: Windows 10
Hi
I am following the steps in this tutorial: https://www.youtube.com/watch?v=qfWwyS00Xh0
In 44:26 the output of the following code:
plt.rcParams["figure.figsize"] = (16, 10) # (w, h)
raw_haemo.plot(duration=3000, n_channels=len(raw_haemo.ch_names), clipping=None);
is different from min. Below you cand find my code which is exactly the same as the tutorial.
raw_od = mne.preprocessing.nirs.optical_density(raw_intensity)
raw_od.copy().pick(range(6)).ch_names
# Import required functions
from mne.preprocessing.nirs import beer_lambert_law, optical_density
raw_haemo = beer_lambert_law(raw_od)
raw_haemo.copy().pick(range(6)).ch_names
# We can now pick based on type
raw_haemo.copy().pick("hbo").ch_names
plt.rcParams["figure.figsize"] = (16, 10) # (w, h)
raw_haemo.plot(duration=300, n_channels=len(raw_haemo.ch_names), clipping=None);
My output is as follow:
All steps before this is working fine. I appriciate your help in advance