[Mne_analysis] comparing spatio-temporal maps

Alexandre Gramfort alexandre.gramfort at inria.fr
Wed Sep 16 08:01:04 EDT 2020
Search archives:

        External Email - Use Caution        

hi Françoise,

in a notebook you can use a slider using ipywidgets like:

from ipywidgets import interact

@interact(time=(evoked.times[0], evoked.times[-1], 0.01),
          continuous_update=False)
def plot_topo(time):
    evoked.plot_topomap(times=[time], size=3., vmin=-250., vmax=250.)

--

you need to modify it to plot multiple evoked jointly

HTH
Alex



More information about the Mne_analysis mailing list