The palette based on authentic neapolitan pizzas.
Use scale_color_pizza_d()
for discrete categories and
scale_color_pizza_c()
for a continuous scale.
Usage
scale_color_pizza(
palette = "margherita",
discrete = TRUE,
reverse = FALSE,
aesthetics = "color",
...
)
scale_color_pizza_d(
palette = "margherita",
discrete = TRUE,
reverse = FALSE,
aesthetics = "color",
...
)
scale_color_pizza_c(
palette = "margherita",
discrete = FALSE,
reverse = FALSE,
aesthetics = "color",
...
)
scale_colour_pizza(
palette = "margherita",
discrete = TRUE,
reverse = FALSE,
aesthetics = "color",
...
)
scale_colour_pizza_c(
palette = "margherita",
discrete = FALSE,
reverse = FALSE,
aesthetics = "color",
...
)
scale_colour_pizza_d(
palette = "margherita",
discrete = TRUE,
reverse = FALSE,
aesthetics = "color",
...
)
scale_fill_pizza(
palette = "margherita",
discrete = TRUE,
reverse = FALSE,
aesthetics = "fill",
...
)
scale_fill_pizza_d(
palette = "margherita",
discrete = TRUE,
reverse = FALSE,
aesthetics = "fill",
...
)
scale_fill_pizza_c(
palette = "margherita",
discrete = FALSE,
reverse = FALSE,
aesthetics = "fill",
...
)
Arguments
- palette
Pizza type. Can be "margherita" (default), "margherita_crust", "diavola" or "diavola_crust".
- discrete
Boolean indicating whether color aesthetic is discrete or not.
- reverse
Boolean indicating whether the palette should be reversed.
- aesthetics
A vector of names of the aesthetics that this scale should be applied to (e.g.,
c('color', 'fill')
).- ...
Additional arguments to pass to
colorRampPalette()
.
Examples
library(ggplot2)
library(see)
ggplot(iris, aes(x = Species, y = Sepal.Length, fill = Species)) +
geom_boxplot() +
theme_modern() +
scale_fill_pizza_d()
ggplot(iris, aes(x = Petal.Length, y = Petal.Width, color = Sepal.Length)) +
geom_point() +
theme_modern() +
scale_color_pizza_c()