Plotting grand mean evokeds by condition

Hi there,

I would like to plot the grand mean of the evokeds files I have created by focussing on specific conditions. At the moment, my evokeds objects contain 4 conditions. I would like to create a grand mean of (and then plot) just 2 of the 4 conditions. I cannot seem to find a way to do that. Could anyone help? :slight_smile:

I thank you and wish you a lovely day!
Sabia

Hello @Scosta, Iโ€™m not sure I fully understand your question, but you can always select a subset of evokeds by condition by doing something like

evoked_cond1 = evokeds['cond1']
evoked_cond2 = evokeds['cond2']

etc.

I hope this helps!

Richard

1 Like