scale_tol_BuRd {khroma} | R Documentation |
Paul Tol's BuRd Diverging Color Scheme
Description
Paul Tol's BuRd Diverging Color Scheme
Usage
scale_colour_BuRd(
...,
reverse = FALSE,
range = c(0, 1),
midpoint = 0,
discrete = FALSE,
aesthetics = "colour"
)
scale_color_BuRd(
...,
reverse = FALSE,
range = c(0, 1),
midpoint = 0,
discrete = FALSE,
aesthetics = "colour"
)
scale_fill_BuRd(
...,
reverse = FALSE,
range = c(0, 1),
midpoint = 0,
discrete = FALSE,
aesthetics = "fill"
)
scale_edge_colour_BuRd(
...,
reverse = FALSE,
range = c(0, 1),
midpoint = 0,
discrete = FALSE,
aesthetics = "edge_colour"
)
scale_edge_color_BuRd(
...,
reverse = FALSE,
range = c(0, 1),
midpoint = 0,
discrete = FALSE,
aesthetics = "edge_colour"
)
scale_edge_fill_BuRd(
...,
reverse = FALSE,
range = c(0, 1),
midpoint = 0,
discrete = FALSE,
aesthetics = "edge_fill"
)
Arguments
... |
Arguments passed to |
reverse |
A |
range |
A length-two |
midpoint |
A length-one |
discrete |
A |
aesthetics |
A |
Value
A continuous scale.
Diverging Color Schemes
If more colors than defined are needed from a given scheme, the color coordinates are linearly interpolated to provide a continuous version of the scheme.
Palette | Max. | NA value |
sunset | 11 | #FFFFFF |
nightfall | 17 | #FFFFFF |
BuRd | 9 | #FFEE99 |
PRGn | 9 | #FFEE99 |
Author(s)
N. Frerebeau
References
Tol, P. (2018). Colour Schemes. SRON. Technical Note No. SRON/EPS/TN/09-002, issue 3.1. URL: https://personal.sron.nl/~pault/data/colourschemes.pdf
See Also
Other diverging color schemes:
scale_crameri_bam
,
scale_crameri_berlin
,
scale_crameri_broc
,
scale_crameri_cork
,
scale_crameri_lisbon
,
scale_crameri_roma
,
scale_crameri_tofino
,
scale_crameri_vanimo
,
scale_crameri_vik
,
scale_tol_PRGn
,
scale_tol_nightfall
,
scale_tol_sunset
Other Paul Tol's color schemes:
scale_tol_PRGn
,
scale_tol_YlOrBr
,
scale_tol_bright
,
scale_tol_dark
,
scale_tol_discreterainbow
,
scale_tol_highcontrast
,
scale_tol_incandescent
,
scale_tol_iridescent
,
scale_tol_light
,
scale_tol_mediumcontrast
,
scale_tol_muted
,
scale_tol_nightfall
,
scale_tol_pale
,
scale_tol_smoothrainbow
,
scale_tol_sunset
,
scale_tol_vibrant
Examples
data(economics, package = "ggplot2")
ggplot2::ggplot(economics, ggplot2::aes(psavert, pce, colour = unemploy)) +
ggplot2::geom_point() +
scale_color_sunset(reverse = TRUE, midpoint = 12000)
ggplot2::ggplot(economics, ggplot2::aes(psavert, pce, colour = unemploy)) +
ggplot2::geom_point() +
scale_color_BuRd(midpoint = 9000)
ggplot2::ggplot(economics, ggplot2::aes(psavert, pce, colour = unemploy)) +
ggplot2::geom_point() +
scale_color_PRGn(midpoint = 9000, range = c(0.25, 1))