Title: | Color Palettes Inspired by Works at the Metropolitan Museum of Art |
---|---|
Description: | Palettes Inspired by Works at the Metropolitan Museum of Art in New York. Currently contains over 50 color schemes and checks for colorblind-friendliness of palettes. Colorblind accessibility checked using the '{colorblindcheck} package by Jakub Nowosad'<https://jakubnowosad.com/colorblindcheck/>. |
Authors: | Blake Robert Mills |
Maintainer: | Blake Robert Mills <[email protected]> |
License: | CC0 |
Version: | 0.2.0 |
Built: | 2024-10-30 06:49:32 UTC |
Source: | CRAN |
Lists all palettes that are colorblind-friendly in the package.
To be colorblind-friendly, all colors in the palettes must be distinguishable with deuteranopia, protanopia, and tritanopia.
Use met.brewer
to construct palettes or colorblind.friendly
to test for colorblind-friendliness.
colorblind_palettes
colorblind_palettes
An object of class character
of length 24.
Checks whether a palette is colorblind-friendly. Colorblind-friendliness tested using the 'colorblindcheck' package. To be colorblind-friendly, all colors in the palettes must be distinguishable with deuteranopia, protanopia, and tritanopia.
colorblind.friendly(palette_name)
colorblind.friendly(palette_name)
palette_name |
Name of Palette. Choices are:
|
TRUE/FALSE value whether palette is colorblind-friendly
colorblind.friendly("Veronese")
colorblind.friendly("Veronese")
Function for viewing all palettes available in MetBrewer.
display_all( n, sequential = FALSE, colorblind_only = FALSE, direction = 1, override.order = FALSE )
display_all( n, sequential = FALSE, colorblind_only = FALSE, direction = 1, override.order = FALSE )
n |
Number of requested colors. If n is left blank, default palette is returned. |
sequential |
Should palettes displayed all at once, or one at a time. Default is all at once (FALSE). |
colorblind_only |
Should only colorblind friendly palettes be returned? Default is set to FALSE. |
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. |
# All Palettes display_all(sequential = FALSE, colorblind_only = FALSE) # All Colorblind Palettes display_all(sequential = FALSE, colorblind_only = TRUE) # 5 Colors of all Palettes display_all(5, sequential = FALSE, colorblind_only = FALSE)
# All Palettes display_all(sequential = FALSE, colorblind_only = FALSE) # All Colorblind Palettes display_all(sequential = FALSE, colorblind_only = TRUE) # 5 Colors of all Palettes display_all(5, sequential = FALSE, colorblind_only = FALSE)
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
to check whether palettes are colorblind-friendly.
met.brewer( name, n, type = c("discrete", "continuous"), direction = c(1, -1), override.order = FALSE )
met.brewer( name, n, type = c("discrete", "continuous"), direction = c(1, -1), override.order = FALSE )
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. |
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"))
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"))
Use names(MetPalettes) to return all possible palette names. Current choices are:
Archambault
, Austria
, Benedictus
, Cassatt1
, Cassatt2
, Cross
, Degas
,
Demuth
, Derain
, Egypt
, Gauguin
, Greek
, Hiroshige
, Hokusai1
,
Hokusai2
, Hokusai3
, Homer1
, Homer2
, Ingres
, Isfahan1
, Isfahan2
,
Java
, Johnson
,Juarez
, Kandinsky
, Klimt
, Lakota
, Manet
,
Monet
, Moreau
, Morgenstern
, Nattier
, Navajo
, NewKingdom
, Nizami
,
OKeeffe1
, OKeeffe2
, Paquin
, Peru1
, Peru2
, Pillement
, Pissaro
,
Redon
, Renoir
, Signac
, Tam
, Tara
, Thomas
, Tiepolo
, Troy
,
Tsimshian
, VanGogh1
, VanGogh2
, VanGogh3
, Veronese
, and Wissing
.
Use met.brewer
to construct palettes.
MetPalettes
MetPalettes
An object of class list
of length 56.
Function for using MetBrewer
colors schemes in ggplot2
. Use scale_color_met_d
and scale_fill_met_d
for discrete scales and scale_color_met_c
and scale_fill_met_c
for continuous scales.
scale_color_met_c(name, direction = 1, ...)
scale_color_met_c(name, direction = 1, ...)
name |
Name of Palette. Choices are:
|
direction |
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed |
... |
Other arguments passed on to |
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Sepal.Length)) + geom_point() + scale_color_met_c("Isfahan1", direction=-1)
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Sepal.Length)) + geom_point() + scale_color_met_c("Isfahan1", direction=-1)
Function for using MetBrewer
colors schemes in ggplot2
. Use scale_color_met_d
and scale_fill_met_d
for discrete scales and scale_color_met_c
and scale_fill_met_c
for continuous scales.
scale_color_met_d(name, direction = 1, override.order = FALSE, ...)
scale_color_met_d(name, direction = 1, override.order = FALSE, ...)
name |
Name of Palette. Choices are:
|
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. |
... |
Other arguments passed on to |
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) + geom_point() + scale_color_met_d("Juarez")
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) + geom_point() + scale_color_met_d("Juarez")
Function for using MetBrewer
colors schemes in ggplot2
. Use scale_color_met_d
and scale_fill_met_d
for discrete scales and scale_color_met_c
and scale_fill_met_c
for continuous scales.
scale_colour_met_c(name, direction = 1, ...)
scale_colour_met_c(name, direction = 1, ...)
name |
Name of Palette. Choices are:
|
direction |
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed |
... |
Other arguments passed on to |
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Sepal.Length)) + geom_point() + scale_colour_met_c("Isfahan1", direction=-1)
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Sepal.Length)) + geom_point() + scale_colour_met_c("Isfahan1", direction=-1)
Function for using MetBrewer
colors schemes in ggplot2
. Use scale_color_met_d
and scale_fill_met_d
for discrete scales and scale_color_met_c
and scale_fill_met_c
for continuous scales.
scale_colour_met_d(name, direction = 1, override.order = FALSE, ...)
scale_colour_met_d(name, direction = 1, override.order = FALSE, ...)
name |
Name of Palette. Choices are:
|
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. |
... |
Other arguments passed on to |
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) + geom_point() + scale_colour_met_d("Juarez")
library(ggplot2) ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) + geom_point() + scale_colour_met_d("Juarez")
Function for using MetBrewer
colors schemes in ggplot2
. Use scale_color_met_d
and scale_fill_met_d
for discrete scales and scale_color_met_c
and scale_fill_met_c
for continuous scales.
scale_fill_met_c(name, direction = 1, ...)
scale_fill_met_c(name, direction = 1, ...)
name |
Name of Palette. Choices are:
|
direction |
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed |
... |
Other arguments passed on to |
Function for using MetBrewer
colors schemes in ggplot2
. Use scale_color_met_d
and scale_fill_met_d
for discrete scales and scale_color_met_c
and scale_fill_met_c
for continuous scales.
scale_fill_met_d(name, direction = 1, override.order = FALSE, ...)
scale_fill_met_d(name, direction = 1, override.order = FALSE, ...)
name |
Name of Palette. Choices are:
|
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. |
... |
Other arguments passed on to |
library(ggplot2) ggplot(data=iris, aes(x=Species, y=Sepal.Length, fill=Species)) + geom_violin() + scale_fill_met_d("Lakota")
library(ggplot2) ggplot(data=iris, aes(x=Species, y=Sepal.Length, fill=Species)) + geom_violin() + scale_fill_met_d("Lakota")