I want to ask how to save the graph generated by mne.viz.plot_compare_evokeds?
When I use evoke’s plot or joint plot function, I can only save the generated figure directly through savefig, but mne.viz.plot_compare_evokeds seems to generate a list of the figure(s). Then how should I save this What about graphics?
According to the documentation, plot_compare_evokeds() returns a list of figures (one figure per channel type). You could try to save those individually; or you could create a figure containing one axes object per channel type and pass those to plot_compare_evokeds(), e.g.: