The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (2024)


18 Nov

The A – Z Of Rcolorbrewer Palette

Alboukadel

|

R Colors

|

R Tips and Tricks

|

12111

RColorBrewer is an R package that contains a ready-to-use color palettes for creating beautiful graphics.

This article presents the different color palettes available in the RColorBrewer package. You will also learn how to use these palettes in ggplot2 and in R base plots.



Contents:

  • Install and load RcolorBrewer package
  • Display all brewer palettes
  • Show only colorblind-friendly brewer palettes
  • Visualize a specific brewer palette
  • Using RColorBrewer palettes in ggplot2
    • Create a basic ggplot colored by groups
    • Change ggplot group colors using r color brewer palettes
  • Using RColorBrewer palettes in base plots
  • Conclusion

Install and load RcolorBrewer package

To install the package, type the following R code in the console:

install.packages("RColorBrewer")

Load the package as follow:

library(RColorBrewer)

Display all brewer palettes

To display all the color palettes in the package, type this:

display.brewer.all()

The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (2)

The package contains 3 types of color palettes: sequential, diverging, and qualitative.

  1. Sequential palettes (first list of colors), which are suited to ordered data that progress from low to high (gradient). The palettes names are : Blues, BuGn, BuPu, GnBu, Greens, Greys, Oranges, OrRd, PuBu, PuBuGn, PuRd, Purples, RdPu, Reds, YlGn, YlGnBu YlOrBr, YlOrRd.
  2. Qualitative palettes (second list of colors), which are best suited to represent nominal or categorical data. They not imply magnitude differences between groups. The palettes names are : Accent, Dark2, Paired, Pastel1, Pastel2, Set1, Set2, Set3.
  3. Diverging palettes (third list of colors), which put equal emphasis on mid-range critical values and extremes at both ends of the data range. The diverging palettes are : BrBG, PiYG, PRGn, PuOr, RdBu, RdGy, RdYlBu, RdYlGn, Spectral

Show only colorblind-friendly brewer palettes

To display only colorblind-friendly brewer palettes, specify the option colorblindFriendly = TRUE as follow:

display.brewer.all(colorblindFriendly = TRUE)

The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (3)

Visualize a specific brewer palette

To show a specific R color brewer palette, you can use the functions below:

# 1. Visualize a single RColorBrewer palette # by specifying its namedisplay.brewer.pal(n, name)# 2. Return the hexadecimal color code of the palettebrewer.pal(n, name)

Description of the function arguments:

  • n: Number of different colors in the palette, minimum 3, maximum depending on palette.
  • name: A palette name from the lists above. For example name = RdBu.

The following R code demonstrates how to display one single r color brewer palette.

# View a single RColorBrewer palette by specifying its namedisplay.brewer.pal(n = 8, name = 'Dark2')

The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (4)

# Hexadecimal color specification brewer.pal(n = 8, name = "Dark2")
## [1] "#1B9E77" "#D95F02" "#7570B3" "#E7298A" "#66A61E" "#E6AB02" "#A6761D"## [8] "#666666"

Using RColorBrewer palettes in ggplot2

Create a basic ggplot colored by groups

We start by creating basic ggplots using the iris demo dataset. We’ll create two differents of plots colored by groups: a scatter plot and a box plot.

library("ggplot2")# Box plot: changing the fill color by Speciesbp <- ggplot(iris, aes(Species, Sepal.Length)) + geom_boxplot(aes(fill = Species)) + theme_minimal() + theme(legend.position = "top")bp# Scatter plot: changing points color by Speciessp <- ggplot(iris, aes(Sepal.Length, Sepal.Width)) + geom_point(aes(color = Species)) + theme_minimal()+ theme(legend.position = "top")sp

The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (5)The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (6)

Change ggplot group colors using r color brewer palettes

Two color scale functions are available in ggplot2 for using the rcolorbrewer palettes:

  • scale_fill_brewer() for box plot, bar plot, violin plot, dot plot, etc
  • scale_color_brewer() for lines and points
# Box plotbp + scale_fill_brewer(palette = "Dark2")# Scatter plotsp + scale_color_brewer(palette = "Dark2")

The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (7)The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (8)

Using RColorBrewer palettes in base plots

The function brewer.pal() is used to generate a vector of colors.

# Barplot using RColorBrewerbarplot(c(2,5,7), col = brewer.pal(n = 3, name = "RdBu"))

The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (9)

Conclusion

In this article, we describe the different color palettes available in the RColorBrewer packages. We also provide examples of R codes for changing the color of plots created by either the ggplot2 R package or the R base graphic functions.



Recommended for you

This section contains best data science and self-development resources to help you on your path.

Coursera - Online Courses and Specialization

Data science

  • Course: Machine Learning: Master the Fundamentals by Stanford
  • Specialization: Data Science by Johns Hopkins University
  • Specialization: Python for Everybody by University of Michigan
  • Courses: Build Skills for a Top Job in any Industry by Coursera
  • Specialization: Master Machine Learning Fundamentals by University of Washington
  • Specialization: Statistics with R by Duke University
  • Specialization: Software Development in R by Johns Hopkins University
  • Specialization: Genomic Data Science by Johns Hopkins University

Popular Courses Launched in 2020

  • Google IT Automation with Python by Google
  • AI for Medicine by deeplearning.ai
  • Epidemiology in Public Health Practice by Johns Hopkins University
  • AWS Fundamentals by Amazon Web Services

Trending Courses

  • The Science of Well-Being by Yale University
  • Google IT Support Professional by Google
  • Python for Everybody by University of Michigan
  • IBM Data Science Professional Certificate by IBM
  • Business Foundations by University of Pennsylvania
  • Introduction to Psychology by Yale University
  • Excel Skills for Business by Macquarie University
  • Psychological First Aid by Johns Hopkins University
  • Graphic Design by Cal Arts

Amazon FBA

Amazing Selling Machine

  • Free Training - How to Build a 7-Figure Amazon FBA Business You Can Run 100% From Home and Build Your Dream Life! by ASM

Books - Data Science

Our Books

  • Practical Guide to Cluster Analysis in R by A. Kassambara (Datanovia)
  • Practical Guide To Principal Component Methods in R by A. Kassambara (Datanovia)
  • Machine Learning Essentials: Practical Guide in R by A. Kassambara (Datanovia)
  • R Graphics Essentials for Great Data Visualization by A. Kassambara (Datanovia)
  • GGPlot2 Essentials for Great Data Visualization in R by A. Kassambara (Datanovia)
  • Network Analysis and Visualization in R by A. Kassambara (Datanovia)
  • Practical Statistics in R for Comparing Groups: Numerical Variables by A. Kassambara (Datanovia)
  • Inter-Rater Reliability Essentials: Practical Guide in R by A. Kassambara (Datanovia)

Others

  • R for Data Science: Import, Tidy, Transform, Visualize, and Model Data by Hadley Wickham & Garrett Grolemund
  • Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow: Concepts, Tools, and Techniques to Build Intelligent Systems by Aurelien Géron
  • Practical Statistics for Data Scientists: 50 Essential Concepts by Peter Bruce & Andrew Bruce
  • Hands-On Programming with R: Write Your Own Functions And Simulations by Garrett Grolemund & Hadley Wickham
  • An Introduction to Statistical Learning: with Applications in R by Gareth James et al.
  • Deep Learning with R by François Chollet & J.J. Allaire
  • Deep Learning with Python by François Chollet

12111

Version: Français

No Comments

Give a comment

The A - Z Of Rcolorbrewer Palette You Must Know- Datanovia (2024)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Rob Wisoky

Last Updated:

Views: 5958

Rating: 4.8 / 5 (68 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Rob Wisoky

Birthday: 1994-09-30

Address: 5789 Michel Vista, West Domenic, OR 80464-9452

Phone: +97313824072371

Job: Education Orchestrator

Hobby: Lockpicking, Crocheting, Baton twirling, Video gaming, Jogging, Whittling, Model building

Introduction: My name is Rob Wisoky, I am a smiling, helpful, encouraging, zealous, energetic, faithful, fantastic person who loves writing and wants to share my knowledge and understanding with you.