Method 3 : Use xlim() & ylim() to Set Axis Limits

Here, we will be using both xlim() and the ylim() function together to set the axis limits accordingly of both the x-axis and y-axis together in the same plot to get a clear idea of the outcomes, refer to the below example.

Example:

In this example, we will be using the xlim() and the ylim() function both together in the same barplot with the same data as the previous example and set the axis limits accordingly in the R programming language.

R




# Datapoint for the barplot
gfg<-c(1,4,6,5,7,5,4)
  
# Creating bar plot and setting the
# x-axis and y-axis limits
barplot(gfg,xlim=c(0,10),ylim=c(0,20))


Output:



How to Use xlim() and ylim() in R?

In this article, we will be looking at the different ways to use the xlim() and the ylim() functions in the R programming language.

Similar Reads

Method 1: Using xlim() to Set X-Axis Limits

The xlim() function with the provided parameters as the range of the x-axis in vectors is used to set the x-axis without dropping any data of the given plot or an object accordingly....

Method 2: Use ylim() to Set Y-Axis Limits

...

Method 3 : Use xlim() & ylim() to Set Axis Limits

The xlim() function with the provided parameters as the range of the y-axis in vectors is used to set the y-axis without dropping any data of the given plot or an object accordingly....