pal_extender | R Documentation |
If the palette returns less colours than requested, the list of colours
will be expanded using scales::pal_gradient_n()
. To be used with a
sequential or diverging palette. Not relevant for qualitative palettes.
pal_extender(pal = scales::brewer_pal(palette = "BrBG"))
scale_fill_extended(
name = waiver(),
...,
pal = scales::brewer_pal(palette = "BrBG"),
aesthetics = "fill"
)
scale_colour_extended(
name = waiver(),
...,
pal = scales::brewer_pal(palette = "BrBG"),
aesthetics = "colour"
)
pal |
A palette function, such as returned by scales::brewer_pal, taking a number of colours as entry and returning a list of colours. |
name |
The name of the scale. Used as the axis or legend title.
If |
... |
Other arguments passed on to |
aesthetics |
Character string or vector of character strings listing
the name(s) of the aesthetic(s) that this scale works with. This can be
useful, for example, to apply colour settings to the colour and fill
aesthetics at the same time, via |
A palette function.
pal <- scales::pal_brewer(palette = "PiYG")
scales::show_col(pal(16))
scales::show_col(pal_extender(pal)(16))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.