scale_colour_ghibli_d {ghibli} | R Documentation |
Discrete scales to use for ggplot2
Description
These functions provide the option to use ghibli
colours inside discrete
palettes with the 'ggplot2' package.
Usage
scale_colour_ghibli_d(name, direction = 1, ...)
scale_color_ghibli_d(name, direction = 1, ...)
scale_fill_ghibli_d(name, direction = 1, ...)
Arguments
name |
Name of desired palette. |
direction |
Either '1' or '-1'. If '-1' the palette will be reversed. |
... |
additional arguments to pass to discrete_scale |
Details
Available palettes are found in ghibli_palettes
.
Examples
if (require('ggplot2')) {
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, colour = Species)) +
geom_point() +
scale_colour_ghibli_d("PonyoMedium")
}
[Package ghibli version 0.3.4 Index]