- MNE version: 1.8.0
- operating system:Windows 10
Hi All,
I have two issues when analysing epochs. Since they are very similar, I’m describing both here.
– 1 –
I have the data with the following triggers: 10, 11, 12, 13, 15, 14
The order above is the correct order for every trial. I cheched it on the raw data and there were not any order issues.
Then, I created epochs using all events:
epochs = mne.Epochs(raw, events[0], event_id=events[1], tmin=-0.5, tmax=0.5, preload=True)
events[0] - array with events
events[1] - dict with event ids
And tried to plot the epochs:
epochs.plot(events=events[0])
and
epochs.plot(events=True)
Either way I see incorrect events order on the plot, which based on what I see in the raw data should not be possible. For example:
Do you have an idea what might be causing this issue?
– 2 –
It has implicaitons for my analysis too, since I am interested in epochs around trigger 11 and need to exclude all the ‘11’ epochs which also have triggers 14 and 15. As I have understood from the information on the forums, it is not very straightforward. Could you suggest any ideas for me how to filter epochs with ‘undesirable’ triggers?
I’ll appreciate your help!
Best,
Kat