📜  如何在 R 中使用 xlim() 和 ylim()?

📅  最后修改于: 2022-05-13 01:54:47.196000             🧑  作者: Mango

如何在 R 中使用 xlim() 和 ylim()?

在本文中,我们将研究在 R 编程语言中使用 xlim() 和 ylim() 函数的不同方法。

方法 1:使用 xlim() 设置 X 轴范围

使用提供的参数作为向量中 x 轴范围的 xlim()函数用于设置 x 轴,而不会相应地删除给定图或对象的任何数据。

句法:

xlim(...)

参数:

  • ...:如果是数字,将创建一个连续的比例,如果是 factor 或字符,将创建一个离散的比例。

例子:

在此示例中,我们将使用 xlim()函数来更改 R 编程语言中给定条形图的 x 轴。

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


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


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


输出:

方法 2:使用 ylim() 设置 Y 轴范围

xlim()函数将提供的参数作为向量中 y 轴的范围,用于设置 y 轴,而不会相应地删除给定图或对象的任何数据。

句法:

xlim(...)

参数:

  • ...:如果是数字,将创建一个连续的比例,如果是 factor 或字符,将创建一个离散的比例。

例子:

在此示例中,我们将使用 ylim()函数在 R 编程语言中更改给定条形图的 y 轴(使用与上一个示例中相同的数据)。

R

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

输出:

方法 3:使用 xlim() 和 ylim() 设置轴限制

在这里,我们将同时使用 xlim() 和 ylim()函数在同一个图中一起设置 x 轴和 y 轴的轴限制,以便清楚地了解结果,请参阅下面的例子。

例子:

在此示例中,我们将在同一个条形图中同时使用 xlim() 和 ylim()函数,并使用与上一个示例相同的数据,并在 R 编程语言中相应地设置轴限制。

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

输出: