- MNE version 1.3.1
- Ubuntu 20.04 running in WSL vscode Jupyter
Hello! I am experimenting with spectral analysis and was wondering if there is a way to perform a notch filter on already spectrally transformed data. I computed the PSD using these settings:
epochs.compute_psd(method='welch', n_fft =var_n_fft).average()
and now would like to filter my data using a notch filter. The problem is I do not have the raw data as I imported the data using an epochs array. Here is the relevant spectrum:
I would like to filter out the peak that is around 30 hertz.
Thanks!
Jacob