scale_okabeito_discrete {khroma} | R Documentation |
Okabe and Ito's Discrete Color Scheme for ggplot2 and ggraph
Description
Provides the qualitative color scale from Okabe and Ito 2008.
Usage
scale_colour_okabeito(
...,
reverse = FALSE,
black_position = c("first", "last"),
aesthetics = "colour"
)
scale_color_okabeito(
...,
reverse = FALSE,
black_position = c("first", "last"),
aesthetics = "colour"
)
scale_fill_okabeito(
...,
reverse = FALSE,
black_position = c("first", "last"),
aesthetics = "fill"
)
scale_edge_colour_okabeito(
...,
reverse = FALSE,
black_position = c("first", "last"),
aesthetics = "edge_colour"
)
scale_edge_color_okabeito(
...,
reverse = FALSE,
black_position = c("first", "last"),
aesthetics = "edge_colour"
)
scale_edge_fill_okabeito(
...,
reverse = FALSE,
black_position = c("first", "last"),
aesthetics = "edge_fill"
)
Arguments
... |
Arguments passed to |
reverse |
A |
black_position |
A |
aesthetics |
A |
Details
This qualitative color scheme is used as given (no interpolation): colors are picked up to the maximum number of supported values (8).
Value
A discrete scale.
Author(s)
N. Frerebeau
References
Okabe, M. & Ito, K. (2008). Color Universal Design (CUD): How to Make Figures and Presentations That Are Friendly to Colorblind People. URL: https://jfly.uni-koeln.de/color/.
See Also
Other qualitative color schemes:
scale_colour_land()
,
scale_colour_soil()
,
scale_colour_stratigraphy()
,
scale_tol_bright
,
scale_tol_dark
,
scale_tol_discreterainbow
,
scale_tol_highcontrast
,
scale_tol_light
,
scale_tol_mediumcontrast
,
scale_tol_muted
,
scale_tol_pale
,
scale_tol_vibrant
Examples
library(ggplot2)
ggplot2::ggplot(mpg, ggplot2::aes(displ, hwy, colour = class)) +
ggplot2::geom_point() +
scale_colour_okabeito()
ggplot2::ggplot(mpg, ggplot2::aes(displ, hwy, colour = class)) +
ggplot2::geom_point() +
scale_colour_okabeito(black_position = "last")