seaborn.
set_palette
(palette, n_colors=None, desat=None, color_codes=False)¶Set the matplotlib color cycle using a seaborn palette.
Palette definition. Should be something that color_palette()
can process.
Number of colors in the cycle. The default number of colors will depend
on the format of palette
, see the color_palette()
documentation for more information.
Proportion to desaturate each color by.
If True
and palette
is a seaborn palette, remap the shorthand
color codes (e.g. “b”, “g”, “r”, etc.) to the colors from this palette.
See also
color_palette
build a color palette or set the color cycle temporarily in a with
statement.
set_context
set parameters to scale plot elements
set_style
set the default parameters for figure style
Examples
>>> set_palette("Reds")
>>> set_palette("Set1", 8, .75)