Hello! In what order should I preprocess an EEG Raw signal? My trials are 2 seconds long.
The options that I’ve implemented are as follows(in order):
- mne.io.Raw.set_eeg_reference
- mne.io.Raw.filter ( l_freq = 4, h_freq = 30)
- mne.preprocessing.ICA
- Normalization
- Minmax Scaling
This is the order that I would apply them in. Also, all of them are optional so it’s not necesary that all of them are applied.