You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Small API heterogenity: different plotting functions use similar parameters slightly differently (and named slightly differently)
scaling: evoked.plot(scalings=dict()) but evoked.plot_topomap(scale=dict() | float)
units: evoked.plot(units=dict()) but evoked.plot_topomap(unit=dict() | str)
max amplitude: evoked.plot(ylim=dict()) but evoked.plot_topomap(vmin=dict() | float, vmax=dict() | float())
Changing parameter names can be annoying for deprecation, but I suggest we at least make their input similar (e.g. always accepts both dict and float).
Additionally, evoked.plot_joint() could gather the parameters common to plot() and plot_topomap() to simplify it. WDTY @jona-sassenhagen ?