-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Evoked.plot_topomap()
and Evoked.plot_joint()
handle the colormaps in a suboptimal manner
#13050
Comments
Hello! 👋 Thanks for opening your first issue here! ❤️ We will try to get back to you soon. 🚴 |
I had seen some colorbar badness and assumed it was a matplotlib bug, it would be great if working this out fixed it!
To build this out a bit more, I think from a user perspective the most intuitive behavior would be:
WDYT? |
case (3) could end up looking really weird if the user's most extreme chosen |
Yeah that's my feeling in that case. And they can work around it easily with (4) if they want. |
Description of the problem
This might be somewhat controversial as a bug report and is partially a matter of taste.
There is a combination of two issues, which leads to suboptimal results when producing plots with the default parameters using
Evoked.plot_topomap()
andEvoked.plot_joint()
.Essentially, an unpredictable amount of whitespace is left above and below the colored portion of the colorbar when using
Evoked.plot_topomap()
. This is seen in all MNE examples using topomaps, for example, Plotting topographic maps of evoked data. The reason is that the colorbar ticks follow thecontours
(as they should), while the colored part is dependent onvlim
(by default set symmetrically such thatvmax = np.abs(data).max()
). The default behavior is to set sixcontours
usingmatplotlib.ticker.MaxNLocator
, which adds locations beyond the minimum and maximum of the data to obtain "nice" values for the ticks. I wonder if it would be better to scale then also the colormap limits to match the smallest and largest ticks?This issue can, of course, be circumvented by explicitly setting both
vlim
andcontours
.Moreover, when using
Evoked.plot_joint()
without specifyingvlim
, thevlim
for the topomaps are selected based on the data at the selected time points (insideplot_evoked_topomap
). At the same time, the contours, and correspondingly, the colorbar ticks, are selected based on theylim
of the time series plot. In my opinion, it would be better to do the following:vlim
are specified for the topomap, use thosevlim
also to set the contours (unlesscontours
are set explicitly). The current behavior is to use theylim
from the time series plot to determine the contours unlesscontours
is set explicitly.vlim
are not specified for the topomap, set the contours similar to what is now done inEvoked.plot_topomap()
, usingvmax = np.abs(data).max()
at the topomap timepoints.Steps to reproduce
Link to data
No response
Expected results
I would like it to do this:
Actual results
Instead this happens:
Here's an example of what happens when suboptimal time points are picked:
Additional information
I don't know if this is a feature or a bug, but here's to open discussion. I can make a PR if this is something that you want to change.
The text was updated successfully, but these errors were encountered: