paletteer - Comprehensive Color Palette Collection for R
Explore the extensive collection of color palettes available in the paletteer package for R visualization.
RVisualizationColor
Introduction
paletteer is a comprehensive collection of color palettes in R, combining multiple palette packages into a single, consistent interface.
Key Features
- Access to 1000+ unique color palettes
- Consistent interface across different sources
- Both discrete and continuous palettes
- Integration with ggplot2
Example Usage
R
library(paletteer)
library(ggplot2)
ggplot(data, aes(x, y, color = group)) +
geom_point() +
scale_color_paletteer_d("nord::frost")
Installation
R
install.packages("paletteer")