Plot a colorbar that corresponds to a brain activation map.
Axes
The Axes to plot into.
str
| dict
Colorbar properties specification. If ‘auto’, set clim automatically based on data percentiles. If dict, should contain:
kind
‘value’ | ‘percent’Flag to specify type of limits.
lims
list | np.ndarray | tuple of float, 3 elementsLower, middle, and upper bounds for colormap.
pos_lims
list | np.ndarray | tuple of float, 3 elementsLower, middle, and upper bound for colormap. Positive values will be mirrored directly across zero during colormap construction to obtain negative control points.
Note
Only one of lims
or pos_lims
should be provided.
Only sequential colormaps should be used with lims
, and
only divergent colormaps should be used with pos_lims
.
str
| np.ndarray
of float
, shape(n_colors, 3 | 4)Name of colormap to use or a custom look up table. If array, must be (n x 3) or (n x 4) array for with RGB or RGBA values between 0 and 255.
None
If True: use a linear transparency between fmin and fmid and make values below fmin fully transparent (symmetrically for divergent colormaps). None will choose automatically based on colormap type.
str
Orientation of the colorbar, can be “vertical” or “horizontal”.
str
The colorbar label.
The color behind the colorbar (for alpha blending).
ColorbarBase
The colorbar.
Notes
New in version 0.19.
mne.viz.plot_brain_colorbar
#Make figures more publication ready