Choosing color palettes ======================= .. raw:: html

In [ ]:
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
sns.set()

In [ ]:
%matplotlib inline
np.random.seed(sum(map(ord, "palettes")))
.. _qualitative_palettes: Qualitative color palettes -------------------------- Qualitative (or categorical) palettes are best when you want to distinguish discrete chunks of data that do not have an inherent ordering. When importing seaborn, the default color cycle is changed to a set of ten colors that evoke the standard matplotlib color cycle while aiming to be a bit more pleasing to look at.

In [ ]:
current_palette = sns.color_palette()
sns.palplot(current_palette)
There are six variations of the default theme, called ``deep``, ``muted``, ``pastel``, ``bright``, ``dark``, and ``colorblind``.

In [ ]:
# TODO hide input here when merged with doc updating branch
f = plt.figure(figsize=(6, 6))

ax_locs = dict(
    deep=(.4, .4),
    bright=(.8, .8),
    muted=(.49, .71),
    dark=(.8, .2),
    pastel=(.2, .8),
    colorblind=(.71, .49),
)

s = .35

for pal, (x, y) in ax_locs.items():
    ax = f.add_axes([x - s / 2, y - s / 2, s, s])
    ax.pie(np.ones(10),
           colors=sns.color_palette(pal, 10),
           counterclock=False, startangle=180,
           wedgeprops=dict(linewidth=1, edgecolor="w"))
    f.text(x, y, pal, ha="center", va="center", size=14,
           bbox=dict(facecolor="white", alpha=0.85, boxstyle="round,pad=0.2"))

f.text(.1, .05, "Saturation", size=18, ha="left", va="center",
       bbox=dict(facecolor="white", edgecolor="w"))
f.text(.05, .1, "Luminance", size=18, ha="center", va="bottom", rotation=90,
       bbox=dict(facecolor="white", edgecolor="w"))

ax = f.add_axes([0, 0, 1, 1])
ax.set_axis_off()
ax.arrow(.15, .05, .4, 0, width=.002, head_width=.015, color="k")
ax.arrow(.05, .15, 0, .4, width=.002, head_width=.015, color="k");
Using circular color systems ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ When you have an arbitrary number of categories to distinguish without emphasizing any one, the easiest approach is to draw evenly-spaced colors in a circular color space (one where the hue changes while keeping the brightness and saturation constant). This is what most seaborn functions default to when they need to use more colors than are currently set in the default color cycle. The most common way to do this uses the ``hls`` color space, which is a simple transformation of RGB values.

In [ ]:
sns.palplot(sns.color_palette("hls", 8))
There is also the :func:`hls_palette` function that lets you control the lightness and saturation of the colors.

In [ ]:
sns.palplot(sns.hls_palette(8, l=.3, s=.8))

In [ ]:
sns.palplot(sns.color_palette("husl", 8))
There is similarly a function called :func:`husl_palette` that provides a more flexible interface to this system. Using categorical Color Brewer palettes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Another source of visually pleasing categorical palettes comes from the `Color Brewer `_ tool (which also has sequential and diverging palettes, as we'll see below). These also exist as matplotlib colormaps, but they are not handled properly. In seaborn, when you ask for a qualitative Color Brewer palette, you'll always get the discrete colors, but this means that at a certain point they will begin to cycle. A nice feature of the Color Brewer website is that it provides some guidance on which palettes are color blind safe. There is a variety of `kinds `_ of color blindness, but the most common variant leads to difficulty distinguishing reds and greens. It's generally a good idea to avoid using red and green for plot elements that need to be discriminated based on color. [This comparison](https://gist.github.com/mwaskom/b35f6ebc2d4b340b4f64a4e28e778486) can be helpful to understand how the the seaborn color palettes perform for different type of colorblindess.

In [ ]:
sns.palplot(sns.color_palette("Paired"))

In [ ]:
sns.palplot(sns.color_palette("Set2"))
To help you choose palettes from the Color Brewer library, there is the :func:`choose_colorbrewer_palette` function. This function, which must be used in a Jupyter notebook, will launch an interactive widget that lets you browse the various options and tweak their parameters. Of course, you might just want to use a set of colors you particularly like together. Because :func:`color_palette` accepts a list of colors, this is easy to do.

In [ ]:
flatui = ["#9b59b6", "#3498db", "#95a5a6", "#e74c3c", "#34495e", "#2ecc71"]
sns.palplot(sns.color_palette(flatui))
.. _using_xkcd_palettes: Using named colors from the xkcd color survey ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ A while back, `xkcd `_ ran a `crowdsourced effort `_ to name random RGB colors. This produced a set of `954 named colors `_, which you can now reference in seaborn using the ``xkcd_rgb`` dictionary:

In [ ]:
plt.plot([0, 1], [0, 1], sns.xkcd_rgb["pale red"], lw=3)
plt.plot([0, 1], [0, 2], sns.xkcd_rgb["medium green"], lw=3)
plt.plot([0, 1], [0, 3], sns.xkcd_rgb["denim blue"], lw=3);
In addition to pulling out single colors from the ``xkcd_rgb`` dictionary, you can also pass a list of names to the :func:`xkcd_palette` function.

In [ ]:
colors = ["windows blue", "amber", "greyish", "faded green", "dusty purple"]
sns.palplot(sns.xkcd_palette(colors))
.. _sequential_palettes: Sequential color palettes ------------------------- The second major class of color palettes is called "sequential". This kind of color mapping is appropriate when data range from relatively low or uninteresting values to relatively high or interesting values. Although there are cases where you will want discrete colors in a sequential palette, it's more common to use them as a colormap in functions like :func:`kdeplot` and :func:`heatmap` (along with similar matplotlib functions). It's common to see colormaps like ``jet`` (or other rainbow palettes) used in this case, because the range of hues gives the impression of providing additional information about the data. However, colormaps with large hue shifts tend to introduce discontinuities that don't exist in the data, and our visual system isn't able to naturally map the rainbow to quantitative distinctions like "high" or "low". The result is that these visualizations end up being more like a puzzle, and they obscure patterns in the data rather than revealing them. The jet colormap is misleading because the brightest colors, yellow and cyan, are used for intermediate data values. This has the effect of emphasizing uninteresting (and arbitrary) values while deemphasizing the extremes. For sequential data, it's better to use palettes that have at most a relatively subtle shift in hue accompanied by a large shift in brightness and saturation. This approach will naturally draw the eye to the relatively important parts of the data. The Color Brewer library has a great set of these palettes. They're named after the dominant color (or colors) in the palette.

In [ ]:
sns.palplot(sns.color_palette("Blues"))
Like in matplotlib, if you want the lightness ramp to be reversed, you can add a ``_r`` suffix to the palette name.

In [ ]:
sns.palplot(sns.color_palette("BuGn_r"))
Seaborn also adds a trick that allows you to create "dark" palettes, which do not have as wide a dynamic range. This can be useful if you want to map lines or points sequentially, as brighter-colored lines might otherwise be hard to distinguish.

In [ ]:
sns.palplot(sns.color_palette("GnBu_d"))
Remember that you may want to use the :func:`choose_colorbrewer_palette` function to play with the various options, and you can set the ``as_cmap`` argument to ``True`` if you want the return value to be a colormap object that you can pass to seaborn or matplotlib functions.

In [ ]:
sns.palplot(sns.color_palette("cubehelix", 8))
Seaborn adds an interface to the cubehelix *system* so that you can make a variety of palettes that all have a well-behaved linear brightness ramp. The default palette returned by the seaborn :func:`cubehelix_palette` function is a bit different from the matplotlib default in that it does not rotate as far around the hue wheel or cover as wide a range of intensities. It also reverses the order so that more important values are darker:

In [ ]:
sns.palplot(sns.cubehelix_palette(8))
Other arguments to :func:`cubehelix_palette` control how the palette looks. The two main things you'll change are the ``start`` (a value between 0 and 3) and ``rot``, or number of rotations (an arbitrary value, but probably within -1 and 1),

In [ ]:
sns.palplot(sns.cubehelix_palette(8, start=.5, rot=-.75))
You can also control how dark and light the endpoints are and even reverse the ramp:

In [ ]:
sns.palplot(sns.cubehelix_palette(8, start=2, rot=0, dark=0, light=.95, reverse=True))
By default you just get a list of colors, like any other seaborn palette, but you can also return the palette as a colormap object that can be passed to seaborn or matplotlib functions using ``as_cmap=True``.

In [ ]:
x, y = np.random.multivariate_normal([0, 0], [[1, -.5], [-.5, 1]], size=300).T
cmap = sns.cubehelix_palette(light=1, as_cmap=True)
sns.kdeplot(x=x, y=y, cmap=cmap, fill=True);
To help select good palettes or colormaps using this system, you can use the :func:`choose_cubehelix_palette` function in a notebook to launch an interactive app that will let you play with the different parameters. Pass ``as_cmap=True`` if you want the function to return a colormap (rather than a list) for use in function like ``hexbin``.
Custom sequential palettes ~~~~~~~~~~~~~~~~~~~~~~~~~~ For a simpler interface to custom sequential palettes, you can use :func:`light_palette` or :func:`dark_palette`, which are both seeded with a single color and produce a palette that ramps either from light or dark desaturated values to that color. These functions are also accompanied by the :func:`choose_light_palette` and :func:`choose_dark_palette` functions that launch interactive widgets to create these palettes.

In [ ]:
sns.palplot(sns.light_palette("green"))

In [ ]:
sns.palplot(sns.dark_palette("purple"))
These palettes can also be reversed.

In [ ]:
sns.palplot(sns.light_palette("navy", reverse=True))
They can also be used to create colormap objects rather than lists of colors.

In [ ]:
pal = sns.dark_palette("palegreen", as_cmap=True)
sns.kdeplot(x=x, y=y, cmap=pal);
By default, the input can be any valid matplotlib color. Alternate interpretations are controlled by the ``input`` argument. Currently you can provide tuples in ``hls`` or ``husl`` space along with the default ``rgb``, and you can also seed the palette with any valid ``xkcd`` color.

In [ ]:
sns.palplot(sns.light_palette((210, 90, 60), input="husl"))

In [ ]:
sns.palplot(sns.dark_palette("muted purple", input="xkcd"))
Note that the default input space for the interactive palette widgets is ``husl``, which is different from the default for the function itself, but much more useful in this context.
.. _diverging_palettes: Diverging color palettes ------------------------ The third class of color palettes is called "diverging". These are used for data where both large low and high values are interesting. There is also usually a well-defined midpoint in the data. For instance, if you are plotting changes in temperature from some baseline timepoint, it is best to use a diverging colormap to show areas with relative decreases and areas with relative increases. The rules for choosing good diverging palettes are similar to good sequential palettes, except now you want to have two relatively subtle hue shifts from distinct starting hues that meet in an under-emphasized color at the midpoint. It's also important that the starting values are of similar brightness and saturation. It's also important to emphasize here that using red and green should be avoided, as a substantial population of potential viewers will be `unable to distinguish them `_. It should not surprise you that the Color Brewer library comes with a set of well-chosen diverging colormaps.

In [ ]:
sns.palplot(sns.color_palette("BrBG", 7))

In [ ]:
sns.palplot(sns.color_palette("RdBu_r", 7))
Another good choice that is built into matplotlib is the ``coolwarm`` palette. Note that this colormap has less contrast between the middle values and the extremes.

In [ ]:
sns.palplot(sns.color_palette("coolwarm", 7))
Custom diverging palettes ~~~~~~~~~~~~~~~~~~~~~~~~~ You can also use the seaborn function :func:`diverging_palette` to create a custom colormap for diverging data. (Naturally there is also a companion interactive widget, :func:`choose_diverging_palette`). This function makes diverging palettes using the ``husl`` color system. You pass it two hues (in degrees) and, optionally, the lightness and saturation values for the extremes. Using ``husl`` means that the extreme values, and the resulting ramps to the midpoint, will be well-balanced.

In [ ]:
sns.palplot(sns.diverging_palette(220, 20, n=7))

In [ ]:
sns.palplot(sns.diverging_palette(145, 280, s=85, l=25, n=7))
The ``sep`` argument controls the width of the separation between the two ramps in the middle region of the palette.

In [ ]:
sns.palplot(sns.diverging_palette(10, 220, sep=80, n=7))
It's also possible to make a palette with the midpoint is dark rather than light.

In [ ]:
sns.palplot(sns.diverging_palette(255, 133, l=60, n=7, center="dark"))
.. _palette_contexts: Setting the default color palette --------------------------------- The :func:`color_palette` function has a companion called :func:`set_palette`. The relationship between them is similar to the pairs covered in the :ref:`aesthetics tutorial `. :func:`set_palette` accepts the same arguments as :func:`color_palette`, but it changes the default matplotlib parameters so that the palette is used for all plots.

In [ ]:
def sinplot(flip=1):
    x = np.linspace(0, 14, 100)
    for i in range(1, 7):
        plt.plot(x, np.sin(x + i * .5) * (7 - i) * flip)

In [ ]:
sns.set_palette("husl")
sinplot()
The :func:`color_palette` function can also be used in a ``with`` statement to temporarily change the color palette.

In [ ]:
with sns.color_palette("PuBuGn_d"):
    sinplot()
.. raw:: html