A ggplot2 color palette based on Taylor Swift Album Covers.
You can install the released version of tayloRswift with:
remotes::install_github("tayloRswift")
ggplot(penguins, aes(bill_depth_mm, bill_length_mm, color = species)) +
geom_point(size = 4) +
scale_color_taylor()+
theme_minimal()
Reputation works great as a grayscale.
ggplot(penguins, aes(bill_depth_mm, bill_length_mm, color = species)) +
geom_point(size = 4) +
scale_color_taylor(palette = "reputation")+
theme_minimal()
ggplot(penguins , aes(bill_depth_mm, bill_length_mm,color = bill_length_mm)) +
geom_point(size = 4, alpha = .6) +
scale_color_taylor(discrete = FALSE)+
theme_minimal()
ggplot(penguins, aes(species, fill = species)) +
geom_bar() +
theme_minimal()+
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
scale_fill_taylor(palette = "speakNow", guide = "none")
If you prefer the live recording
ggplot(penguins, aes(species, fill = species)) +
geom_bar() +
theme_minimal()+
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
scale_fill_taylor(palette = "speakNowLive", guide = "none")