在 R 编程中使用通用图绘制数据 – plot()函数
R 编程语言中的 plot()函数被定义为用于绘图的通用函数。它可用于创建不同类型的基本图形。
Syntax: plot(x, y, type)
Parameters
- x and y: coordinates of points to plot
- type: the type of graph to create
Returns: different type of plots
用 R 编程语言绘制数据
示例 1:在 R 中使用 plot()函数绘制点
R
plot(3, 4)
R
plot(c(1, 3, 4), c(4, 5 , 8))
R
plot(1:20)
R
# Values for x and y axis
x <- 1:5; y = x * x
# Using plot() function
plot(x, y, type = "l")
plot(x, y, type = "h")
R
# R program to plot a graph
# Creating x and y-values
x - 1:5; y = x * x
# Using plot function
plot(x, y, type = "b")
plot(x, y, type = "s")
plot(x, y, type = "p")
输出:
示例 2:绘制多个点
R
plot(c(1, 3, 4), c(4, 5 , 8))
输出:
示例 3:点序列
R
plot(1:20)
输出:
示例 4:绘制图形的 R 程序
R
# Values for x and y axis
x <- 1:5; y = x * x
# Using plot() function
plot(x, y, type = "l")
plot(x, y, type = "h")
输出:
在上面的示例中 type=“l” 代表折线图, type=“h” 代表像垂直线一样的“直方图”。
示例 5:绘制不同图形的 R 程序
R
# R program to plot a graph
# Creating x and y-values
x - 1:5; y = x * x
# Using plot function
plot(x, y, type = "b")
plot(x, y, type = "s")
plot(x, y, type = "p")
输出:
在这里,在上面的例子中 type=“b” 代表两者,这意味着点由一条线连接
type=“s”indicates stair steps
type=“p” for points (by default).