基本情节

通过调用 plot() 创建基本图。在这里,我们使用内置的 cars 数据框,其中包含汽车的速度和 20 世纪 20 年代停止的距离。 (要了解有关数据集的更多信息,请使用 help(cars))。

plot(x = cars$speed, y = cars$dist, pch = 1, col = 1, 
     main = "Distance vs Speed of Cars", 
     xlab = "Speed", ylab = "Distance")

StackOverflow 文档

我们可以在代码中使用许多其他变体来获得相同的结果。我们还可以更改参数以获得不同的结果。

with(cars, plot(dist~speed, pch = 2, col = 3, 
     main = "Distance to stop vs Speed of Cars", 
     xlab = "Speed", ylab = "Distance"))

StackOverflow 文档

通过调用 points()text()mtext()lines()grid() 等可以在此图中添加其他功能。

plot(dist~speed, pch = "*", col = "magenta", data=cars,
     main = "Distance to stop vs Speed of Cars", 
     xlab = "Speed", ylab = "Distance")
mtext("In the 1920s.")
grid(,col="lightblue")

StackOverflow 文档