如何在 R 中创建一个空图?
在本文中,我们将讨论如何在 R 中创建空图。在开始创建空图之前,让我们先讨论一下什么是空图?没有绘制任何内容的图称为空图,也称为空白图。
R 语言提供了 plot()函数来绘制绘图。
Syntax: plot(x,y,…)
Parameters:
- x stands for the x-axis
- y stands for the y-axis
- … stands for the other features like title, color etc
现在我们讨论一些可以创建空图的方法:
方法 1:使用 plot.new()
plot.new()函数将创建空图。这将向 R 发出信号,表示创建了绘图的新窗口。因此,在此函数的帮助下创建了一个空的绘图窗口。
R
# plot function is used
# to draw the plot and
# new is used to make
# that plot new
plot.new()
R
# plot is used to create the plot
# window is used to create the plot
# window and limits are set of the
# axis because limit arguments are
# necessary
plot.window(xlim = c(0 , 1), ylim = c( 5, 10))
R
# plot function is used to plot
# the data type with "n" is used
# to remove the plotted data
plot(1, type = "n", xlab = "",
ylab = "", xlim = c(0, 5),
ylim = c(0, 5))
输出:
方法 2:使用 plot.window()
plot.window()函数将创建空图。这将向 R 发出信号,表示创建了绘图的新窗口。因此,在此函数的帮助下创建了一个空的绘图窗口。但是这个函数需要参数来设置绘图的限制。所以在这里,我们给出了两个轴的限制。
电阻
# plot is used to create the plot
# window is used to create the plot
# window and limits are set of the
# axis because limit arguments are
# necessary
plot.window(xlim = c(0 , 1), ylim = c( 5, 10))
输出:
方法 3:使用 plot()
plot函数用于创建绘图。因此,在此方法中,我们首先使用 plot函数创建绘图,然后删除绘制在绘图上的点或数据。为了删除绘制的数据,我们在 plot函数中使用type = “n”作为参数,这里的“n”用于删除绘制的数据。
电阻
# plot function is used to plot
# the data type with "n" is used
# to remove the plotted data
plot(1, type = "n", xlab = "",
ylab = "", xlim = c(0, 5),
ylim = c(0, 5))
输出 :