I am interested in having a "good" divergent color pallette. One could obviously use just red, white, and blue:
img <- function(obj, nam) {
image(1:length(obj), 1, as.matrix(1:length(obj)), col=obj,
main = nam, ylab = "", xaxt = "n", yaxt = "n", bty = "n")
}
rwb <- colorRampPalette(colors = c("red", "white", "blue"))
img(rwb(100), "red-white-blue")
Since I recently fell in love with the viridis color palettes, I was hoping to combine viridis and magma to form such divergent colors (of course, color blind people would only see the absolute value of the color, but that is sometimes o.k.).
When I tried combining viridis and magma, I found that they don't "end" (or "start") at the same place, so I get something like this (I'm using R, but this would probably be the same for python users):
library(viridis)
img(c(rev(viridis(100, begin = 0)), magma(100, begin = 0)), "magma-viridis")
We can see that when close to zero, viridis is purple, while magma is black. I would like for both of them to start in (more or less) the same spot, so I tried using 0.3 as a starting point:
img(c(rev(viridis(100, begin = 0.3)), magma(100, begin = 0.3)), "-viridis-magma(0.3)")
This is indeed better, but I wonder if there is a better solution.
(I am also "tagging" python users, since viridis is originally from matplotlib
, so someone using it may know of such a solution)
Thanks!
There have been some good and useful suggestions already but let me add a few remarks:
Therefore, combining magma and viridis does not work well. You could let them diverge from a similar yellowish color but you would diverge to similar blueish colors. Also with the changing hues it would just become more difficult to judge in which arm of the palette you are.
As mentioned by others, ColorBrewer.org provides good diverging palettes. Moreland's approach is also useful. Yet another general solution is our
diverging_hcl()
function in thecolorspace
package. In the accompanying paper at https://arxiv.org/abs/1903.06490 (forthcoming in JSS) the construction principles are described and also how the general HCL-based strategy can approximate numerous palettes from ColorBrewer.org, CARTO, etc. (Earlier references include our initial work in CSDA at http://dx.doi.org/10.1016/j.csda.2008.11.033 and further recommendations geared towards meteorology, but applicable beyond, in a BAMS paper at http://dx.doi.org/10.1175/BAMS-D-13-00155.1.)The advantage of our solution in HCL space (hue-chroma-luminance) is that you can interpret the coordinates relatively easily. It does take some practice but isn't as opaque as other solutions. Also we provide a GUI
hclwizard()
(see below) that helps understanding the importance of the different coordinates.Most of the palettes in the question and the other answers can be matched rather closely by
diverging_hcl()
provided that the two hues (argumenth
), the maximum chroma (c
), and minimal/maximal luminance (l
) are chosen appropriately. Furthermore, one may have to tweak thepower
argument which controls how quickly chroma and luminance are increased, respectively. Typically, chroma is added rather quickly (power[1] < 1
) whereas luminance is increased more slowly (power[2] > 1
).Moreland's "cool-warm" palette for example uses a blue (
h = 250
) and red (h = 10
) hue but with a relatively small luminance contrast(l = 37
vs.l = 88
):which looks rather similar (see below) to:
In contrast, ColorBrewer.org's BrBG palette a much higher luminance contrast (
l = 20
vs.l = 95
):The resulting palettes are compared below with the HCL-based version below the original. You see that these are not identical but rather close. On the right-hand side I've also matched viridis and plasma with HCL-based palettes.
Whether you prefer the cool-warm or BrBG palette may depend on your personal taste but also - more importantly - what you want to bring out in your visualization. The low luminance contrast in cool-warm will be more useful if the sign of the deviation matters most. A high luminance contrast will be more useful if you want to bring out the size of the (extreme) deviations. More practical guidance is provided in the papers above.
The rest of the replication code for the figure above is:
Update: These HCL-based approximations of colors from other tools (ColorBrewer.org, viridis, scico, CARTO, ...) are now also available as named palettes in both the
colorspace
package and thehcl.colors()
function from the basicgrDevices
package (starting from 3.6.0). Thus, you can now also say easily:Finally, you can explore our proposed colors interactively in a shiny app: http://hclwizard.org:64230/hclwizard/. For users of R, you can also start the shiny app locally on your computer (which runs somewhat faster than from our server) or you can run a Tcl/Tk version of it (which is even faster):
If you want to understand what the paths of the palettes look like in RGB and HCL coordinates, the
colorspace::specplot()
is useful. See for examplecolorspace::specplot(coolwarm)
.Library
RColorBrewer
provides beautiful palettes for =<13 colors. For example, paletteBrBG
shows diverging colors from brown to green.Which can be expanded to a less informative palette by creating palettes to and from a mid-point color.
Analogically, using your choice of
viridis
andmagma
palettes, you can try finding a similarity between them. This could be a point, where to join the palettes back to back.I find Kenneth Moreland's proposal quite useful. It is implemented in the
Rgnuplot
package (install.packages("Rgnuplot")
is enough, you don't need to install GNU plot). To use it like the usual color maps, you need to convert it like this:This it how it looks like in action compared to an interpolated RColorBrewer "RdBu":
The
scico
package (Palettes for R based on the Scientific Colour-Maps ) has several good diverging palettes that are perceptually uniform and colorblind safe (e.g.,vik
,roma
,berlin
).Also available for Python, MatLab, GMT, QGIS, Plotly, Paraview, VisIt, Mathematica, Surfer, d3, etc. here
Paper: Crameri, F. (2018), Geodynamic diagnostics, scientific visualisation and StagLab 3.0, Geosci. Model Dev., 11, 2541-2562, doi:10.5194/gmd-11-2541-2018
Blog: The Rainbow Colour Map (repeatedly) considered harmful
Another great package is cmocean. Its colormaps are available in R via the
pals
package or the oce package.Paper: Thyng, K. M., Greene, C. A., Hetland, R. D., Zimmerle, H. M., & DiMarco, S. F. (2016). True colors of oceanography. Oceanography, 29(3), 10, http://dx.doi.org/10.5670/oceanog.2016.66.
Talk: PLOTCON 2016: Kristen Thyng, Custom Colormaps for Your Field.
Edit: add colorblind-friendly palettes from the rcartocolor package