Learn R Programming

khroma (version 1.14.0)

scale_crameri_fes: Fabio Crameri's fes Multi-Sequential Color Scheme

Description

Fabio Crameri's fes Multi-Sequential Color Scheme

Usage

scale_colour_fes(
  ...,
  reverse = FALSE,
  range = c(0, 1),
  midpoint = 0,
  aesthetics = "colour"
)

scale_color_fes( ..., reverse = FALSE, range = c(0, 1), midpoint = 0, aesthetics = "colour" )

scale_fill_fes( ..., reverse = FALSE, range = c(0, 1), midpoint = 0, aesthetics = "fill" )

Value

A continuous scale.

Arguments

...

Arguments passed to ggplot2::continuous_scale().

reverse

A logical scalar. Should the resulting vector of colors be reversed?

range

A length-two numeric vector specifying the fraction of the scheme's color domain to keep.

midpoint

A length-one numeric vector giving the midpoint (in data value) of the diverging scale. Defaults to 0.

aesthetics

A character string or vector of character strings listing the name(s) of the aesthetic(s) that this scale works with.

Sequential 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.

PaletteMax.
batlow256
batlowW256
batlowK256
devon256
lajolla256
bamako256
davos256
bilbao256
nuuk256
oslo256
grayC256
hawaii256
lapaz256
tokyo256
buda256
acton256
turku256
imola256
oleron*256
bukavu*256
fes*256

*: multisequential color schemes.

Author

N. Frerebeau

References

Crameri, F. (2018). Geodynamic diagnostics, scientific visualisation and StagLab 3.0. Geosci. Model Dev., 11, 2541-2562. tools:::Rd_expr_doi("10.5194/gmd-11-2541-2018")

Crameri, F., Shephard, G. E. & Heron, P. J. (2020). The misuse of colour in science communication. Nature Communications, 11, 5444. tools:::Rd_expr_doi("10.1038/s41467-020-19160-7")

See Also

Other multi sequential color schemes: scale_crameri_bukavu, scale_crameri_oleron

Other Fabio Crameri's color schemes: scale_crameri_acton, scale_crameri_bam, scale_crameri_bamO, scale_crameri_bamako, scale_crameri_batlow, scale_crameri_batlowK, scale_crameri_batlowW, scale_crameri_berlin, scale_crameri_bilbao, scale_crameri_broc, scale_crameri_brocO, scale_crameri_buda, scale_crameri_bukavu, scale_crameri_cork, scale_crameri_corkO, scale_crameri_davos, scale_crameri_devon, scale_crameri_grayC, scale_crameri_hawaii, scale_crameri_imola, scale_crameri_lajolla, scale_crameri_lapaz, scale_crameri_lisbon, scale_crameri_nuuk, scale_crameri_oleron, scale_crameri_oslo, scale_crameri_roma, scale_crameri_romaO, scale_crameri_tofino, scale_crameri_tokyo, scale_crameri_turku, scale_crameri_vanimo, scale_crameri_vik, scale_crameri_vikO

Examples

Run this code
data(volcano)

volcan <- data.frame(
  x = rep(1:ncol(volcano), each = nrow(volcano)),
  y = rep(1:nrow(volcano), times = ncol(volcano)),
  z = as.numeric(volcano)
)

ggplot2::ggplot(volcan, ggplot2::aes(x, y, fill = z)) +
  ggplot2::geom_raster() +
  scale_fill_oleron(midpoint = 125)

Run the code above in your browser using DataLab