Dear Colleagues
I’m trying to plot a “normal” rest EEG edf file:
raw.filter(l_freq=0.5, h_freq=None)
raw.filter(0.5, 50)
notches = np.arange(60)
raw.notch_filter(notches, phase='zero-double', fir_design='firwin2')
The problem is the last line. With it I have the above error, without it, the plot is all right. Any hint? Thanks in advance.