R - paletteer: package for color palettes

30 May 2020

paletteer: nice package for creating color palettes in R

https://paulvanderlaken.com/2020/03/17/paletteer-hundreds-of-color-palettes-in-r/

install.packages("paletteer")
library(paletteer)

install.packages("ggplot2")
library(ggplot2)

ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
  geom_point() +
  scale_color_paletteer_d("nord::aurora")
[ R  ggplot2  colors  palettes  plot  package  visualization  ]