Continuous#

Perceptually uniform continuous colormaps from CET#

Peter Kovesi at the Center for Exploration Targeting created a very useful set of perceptually uniform continuous colormaps, many of which can replace the highly non-uniform colormaps provided with Python plotting programs. Here we will show how to use them via a Python package named colorcet, listing all the ones available and allowing you to evaluate how perceptually uniform they are for you, your particular monitor, etc. Download and installation instructions are at the github site.

We will plot them using Matplotlib via Holoviews, but identical Bokeh palettes are also provided, and both Bokeh palettes and Matplotlib colormaps are usable in Datashader. Thus these colormaps can be used in any of those Python packages, as well as any other package that accepts a Python list of normalized RGB tuples or hex colors. See Peter’s site to download versions for other non-Python packages.

import holoviews as hv
from colorcet.plotting import swatches, sine_combs

hv.notebook_extension("matplotlib")

Named colormaps#

The full list of colormaps included will be shown below, but a useful subset of these maps that cover the various types have been given more convenient names, and we will focus on those first.

swatches(only_aliased=True, not_group='glasbey')

All colormaps#

Each colormap has a name in the form:

{category}_{huesequence}_{lightnessrange}_c{meanchroma}[_s{colorshift}[_r]]

It is helpful to think of them by which category best suits your use case.

Linear (sequential) colormaps, for plotting magnitudes:#

swatches(group="linear")

Diverging colormaps, for plotting magnitudes increasing or decreasing from a central point:#

swatches(group='diverging')

Colorblind-safe colormaps (usable by people with various types of colorblindness)#

swatches(group='nopic')

Cyclic colormaps:#

For cyclic quantities like orientation or phase (where the highest and lowest values need the same color).

swatches(group=['circle','cyclic'])

Misc colormaps:#

  • rainbow: to highlight local differences in sequential data

  • isoluminant: to highlight low spatial-frequency information

swatches(group='rainbow')
swatches(group='isoluminant')

Testing perceptual uniformity#

Peter Kovesi created a test image with a sine grating modulation of intensity, where modulation gain decreases from top to bottom, which helps evaluate perceptual uniformity of a colormap at a glance. The matplotlib maintainers use different definitions of perceptually uniform (uniformity in a different color space), but the new matplotlib perceptually uniform colormaps do well at Peter’s test image:

sine_combs(("viridis", "viridis"), ("inferno", "inferno"))

Here the sine grating for a uniform colormap should be visible as a fine-toothed comb with teeth that gradually become less visible from top to bottom. The further down the comb these teeth are visible, the higher the discriminability of magnitudes at that location in the colormap. Thus a perceptually uniform colormap, like the two above, should have teeth that visible at the same length for all colors.

You can also use these images to evaluate the overall level of discriminability provided by a given colormap – the longer the visible area of teeth, the better this colormap allows you to discriminate fine differences in magnitude. Here the inferno map seems to have better discriminability than the viridis map, despite both being perceptually uniform.

The default colormaps that have traditionally been used with Matlab, Matplotlib, and HoloViews are clearly not perceptually uniform – all the green and yellow areas are nearly indistinguishable:

sine_combs(("hot", "hot"),("jet", "jet"), cols=2)

Thus those colormaps should be avoided if at all possible, to avoid generating misleading visualizations. Compare these two to the perceptually uniform versions provided by this package:

sine_combs("fire", "rainbow4", cols=2)

We can see the results for all the colorcet colormaps below, which can be summarized as:

  • “linear” colormaps all work well by this criterion

  • “diverging” colormaps typically have discontinuities in perceptual discriminability around the central value

  • “cyclic” colormaps with repeating colors tend to have discontinuities at 1/4 and 3/4 of the way through the cycle, or at other locations if shifted.

  • “isoluminant” colormaps typically show no visible modulation, because without luminance cues humans can only discriminate low spatial-frequency modulations (i.e., much wider teeth would be needed for evaluating such colormaps)

  • Some of the “rainbow” colormaps appear to have a perceptual discontinuity around the colors red and yellow, the reasons for which are not yet clear.

sine_combs(not_group='glasbey', cols=2)