如何在 r 中叠加图(附示例)
您可以使用lines()和points()函数在R中覆盖多个路径:
#create scatterplot of x1 vs. y1 plot(x1, y1) #overlay line plot of x2 vs. y2 lines(x2, y2) #overlay scatterplot of x3 vs. y3 points(x2, y2)
以下示例展示了如何在实践中使用每个函数。
示例 1:如何在 R 中叠加线路路径
以下代码显示了如何在 R 中将三个线图叠加到一个图中:
#define datasets
x1 = c(1, 3, 6, 8, 10)
y1 = c(7, 12, 16, 19, 25)
x2 = c(1, 3, 5, 7, 10)
y2 = c(9, 15, 18, 17, 20)
x3 = c(1, 2, 3, 5, 10)
y3 = c(5, 6, 7, 15, 18)
#create line plot of x1 vs. y1
plot(x1, y1, type=' l ', col=' red ')
#overlay line plot of x2 vs. y2
lines(x2, y2, col=' blue ')
#overlay line plot of x3 vs. y3
lines(x3, y3, col=' purple ')
#add legend
legend(1, 25, legend=c(' Line 1 ', ' Line 2 ', ' Line 3 '),
col=c(' red ', ' blue ', ' purple '), lty= 1 )
示例2:如何在R中叠加点云
以下代码显示了如何在 R 中的单个图中叠加两个点云:
#define datasets
x1 = c(1, 3, 6, 8, 10)
y1 = c(7, 12, 16, 19, 25)
x2 = c(1, 3, 5, 7, 10)
y2 = c(9, 15, 18, 17, 20)
#create scatterplot of x1 vs. y1
plot(x1, y1, col=' red ', pch= 19 )
#overlay scatterplot of x2 vs. y2
points(x2, y2, col=' blue ', pch= 19 )
#add legend
legend(1, 25, legend=c(' Data 1 ', ' Data 2 '), pch=c(19, 19), col=c(' red ', ' blue '))
请注意, pch参数指定图中点的形状。 pch 值 19 指定实心圆。
您可以在此处找到 pch 值及其相应形式的完整列表。
其他资源
以下教程解释了如何在 R 中执行其他常见跟踪功能: