- 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 bar plot in base R with different limits for Y-axis?
To create a bar plot in base R with different limits for Y-axis, we can use ylim argument but generally that behaves badly, such as extending the bars below X-axis. Therefore, we need to fix those things. Check out the below example to understand how it can be done.
Example
> x<-c(501,324) > barplot(x)
Output
Example
> barplot(x,ylim=c(300,600))
Output
Example
> barplot(x,ylim=c(300,600),xpd=FALSE)
Output
Example
> box(bty="l")
Output
- Related Articles
- How to create a plot with reversed Y-axis labels in base R?
- How to create a bar plot using ggplot2 with percentage on Y-axis in R?
- How to create empty bar plot in base R?
- How to create horizontal lines for each bar in a bar plot of base R?
- How to change the Y-axis title in base R plot?
- Automatically setting Y-axis limits for a bar graph using Matplotlib
- How to create a plot in base R with dates sequence on X-axis?
- How to create different Y-axis for group levels using ggplot2 in R?
- Create bar plot for grouped data of two columns in base R.
- How to create horizontal line for Y variable at median in base R plot?
- How to create a plot with tick marks between X-axis labels in base R?
- How to create a bar plot with bars for missing values in R?
- How to display x-bar in base R plot?
- How to display superscript for X-axis title in base R plot?
- How to change the Y-axis values in a bar plot using ggplot2 in R?

Advertisements