How to use xlim() to Set X-Axis Limits In R Language

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.

Syntax:

xlim(...)

Parameters:

  • …: if numeric, will create a continuous scale, if factor or character, will create a discrete scale.

Example:

In this example, we will be using the xlim() function to change the x-axis of the given bar plot 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 limits
barplot(gfg,xlim=c(0,10))


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....