1 2 3 | scale_color_blueberry(palette = "main", reverse = FALSE, ...)
scale_fill_blueberry(palette = "main", reverse = FALSE, ...)
blueberry_cols()
|
An object of class character
of length 8.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | library(bluepally)
library(ggplot2)
blueberry_colors
ggplot(iris, aes(Sepal.Width, Sepal.Length, color = Species)) +
geom_point(size = 4) +
scale_color_blueberry(palette="blue", reverse = TRUE)
ggplot(mpg, aes(manufacturer, fill = manufacturer)) +
geom_bar() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
scale_fill_blueberry( guide = "none")
blueberry_pal("blue")(10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.