library(ggplot2)
library(see)
ggplot(iris, aes(x = Species, y = Sepal.Length, color = Species)) +
geom_boxplot() +
theme_modern() +
scale_color_colorhex_d(palette = 1014416)
ggplot(iris, aes(x = Species, y = Sepal.Length, fill = Species)) +
geom_violin() +
theme_modern() +
scale_fill_colorhex_d(palette = 1014416)
ggplot(iris, aes(x = Petal.Length, y = Petal.Width, color = Sepal.Length)) +
geom_point() +
theme_modern() +
scale_color_colorhex_c(palette = 1014416)
Run the code above in your browser using DataLab