SIEI colors available through scale_color_si
Usage
scale_color_si(
palette = "hunter_c",
alpha = 1,
discrete = FALSE,
reverse = FALSE,
na.value = slate,
...
)
Examples
if (FALSE) { # \dontrun{
library(ggplot2)
library(glitr)
# Apply palettes to discrete or continuous colors
ggplot(diamonds) +
geom_point(aes(x = carat, y = price, color = cut)) +
scale_color_si("hunter_c", discrete = T)
ggplot(diamonds) +
geom_point(aes(x = carat, y = price, color = price)) +
scale_color_si("hunter_c")} # }