- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create the bar chart with ggplot2 using color brewer in R?
To create the bar chart with ggplot2 using color brewer in R, we can follow the below steps −
- First of all, create a data frame.
- Then, create the chart with default colors.
- After that, use scale_colour_brewer function to create the bar chart.
Create the data frame
Let's create a data frame as shown below −
Group<-c("A","B","C") Count<-c(24,21,27) df<-data.frame(Group,Count) df
On executing, the above script generates the below output(this output will vary on your system due to randomization) −
Group Count 1 A 24 2 B 21 3 C 27
Create the bar chart with default colors
Loading ggplot2 package and creating the bar for the data in df −
Group<-c("A","B","C") Count<-c(24,21,27) df<-data.frame(Group,Count) library(ggplot2) ggplot(df,aes(Group,Count,fill=Group))+geom_bar(stat="identity")
Output
Create the bar chart with color brewer
Use scale_colour_brewer function of the ggplot2 package to create the bar chart for the data in df −
Group<-c("A","B","C") Count<-c(24,21,27) df<-data.frame(Group,Count) library(ggplot2) ggplot(df,aes(Group,Count,fill=Group))+geom_bar(stat="identity")+scale_fill_brewer(pa lette="Set3")
Output
- Related Articles
- How to create bar chart using ggplot2 with chart sub-title in R?
- How to change the color of points for ggplot2 scatterplot using color brewer in R?
- How to create line chart for categories with grey color palette using ggplot2 in R?
- How to create a bar chart for single vector using ggplot2 in R?
- How to display NA group values in scatterplot created with ggplot2 using color brewer in R?
- Create stacked bar chart with percentages on Y-axis using ggplot2 in R.
- How to display NA frequency for a ggplot2 graph using color brewer in R?
- How to create a horizontal bar chart using ggplot2 with labels at inside end of the bars in R?
- How to create a bar chart using ggplot2 with facets that are in the order of the data in R?
- How to create bar plot with log values using ggplot2 in R?
- How to create a bar plot with ggplot2 using stat_summary in R?
- How to create a point chart with empty points using ggplot2 in R?
- How to create a line chart using ggplot2 with larger width in R?
- How to create line chart using ggplot2 in R with 3-sigma limits?
- How to create transparent bar plot using ggplot2 in R?

Advertisements