met.brewer | R Documentation |
Color palettes inspired by works at The Metropolitan Museum of Art. Complete list of palette colors
and the works that inspired them can be found on Github.
Use colorblind.friendly.met
to check whether palettes are colorblind-friendly.
met.brewer(
palette_name,
n,
type = c("discrete", "continuous"),
direction = c(1, -1),
override_order = FALSE,
return_hex = FALSE
)
palette_name |
Name of Palette. Choices are:
|
n |
Number of desired colors. If number of requested colors is beyond the scope of the palette, colors are automatically interpolated. If n is not provided, the length of the palette is used. |
type |
Either "continuous" or "discrete". Use continuous if you want to automatically interpolate between colors. |
direction |
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed |
override_order |
Colors are picked from palette to maximize readability and aesthetics. This means that colors are not always selected in sequential order from the full palette. If override_order is set to TRUE, colors are selected in sequential order from the full palette instead. Default is FALSE. |
return_hex |
Default is FALSE. If TRUE, hex codes of colors will be returned in addition to the palette. |
A vector of colors.
met.brewer("VanGogh1")
met.brewer("Greek", direction=-1)
met.brewer("Cassatt2", 4, override_order=TRUE)
library(ggplot2)
ggplot(data=iris, aes(x=Species, y=Petal.Length, fill=Species)) +
geom_violin() +
scale_fill_manual(values=met.brewer("Greek", 3))
ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) +
geom_point(size=2) +
scale_color_manual(values=met.brewer("Renoir", 3))
ggplot(data=iris, aes(x=Species, y=Sepal.Width, color=Sepal.Width)) +
geom_point(size=3) +
scale_color_gradientn(colors=met.brewer("Isfahan1"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.