R不将点添加到图

时间:2018-11-22 08:37:17

标签: r plot

多年来,我一直在绘图中添加线条和点以及许多其他内容。由于某种原因,在R3.5.1中,我似乎无法做到。

我有以下代码

plot(-4:4, -4:4, type = "n") # setting up coord. system
points(rnorm(200), rnorm(200), col = "red")

本质上是从网络上的标准示例中“偷来的”

运行代码时,出现以下错误:

Error in plot.xy(xy.coords(x, y), type = type, ...) : plot.new has not been called yet

没有理由我可以想象这个错误...有什么想法吗?

我可以很好地使用ggplot2,但是很多时候R中的基本绘图功能足以满足我的需求。

0 个答案:

没有答案