
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Show All X-Axis Labels in a Bar Graph Using Barplot Function in R
In base R, the barplot function easily creates a barplot but if the number of bars is large or we can say that if the categories we have for X-axis are large then some of the X-axis labels are not shown in the plot. Therefore, if we want them in the plot then we need to use las and cex.names.
Example
Consider the below data and bar graph −
> x<-sample(1:5,20,replace=TRUE) > names(x)<-rep(c("IN","CO","LA","NY"),times=5) > barplot(x)
Output
Showing all the X-axis labels −
> barplot(x,las=2,cex.names=0.5)
Output
Advertisements