Events order issue after epoching

  • 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

A very quick first answer (as I’m currently in a rush), I think one thing you should do is epoch only around events of interest, i.e., event 11. Otherwise, you are creating 1s epochs around every event, which is probably not what you want. Then at least the plots should look correct hopefully.

1 Like

Yes, you can use epochs metadata queries for this. Check out this tutorial for an introduction.

Best wishes,
Richard

2 Likes

Thanks a lot!
It worked really well. Nice functionality :slightly_smiling_face:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.