用线条绘制情节?

时间:2019-04-26 11:00:08

标签: r plot

我必须使用R做一些绘图。我运行R-studio,并且使用了多个R发行版来检查是否存在相同的问题。 问题是plot()type='l'将所有点连接在一起。有人可以帮忙吗?

p <- sample(seq(0,2,0.01), 100, replace = T)
plot(p, p^2, type='l', col=2)

enter image description here

1 个答案:

答案 0 :(得分:2)

您可能必须先sort分。

p <- sort(sample(seq(0, 2, 0.01), 100, replace=TRUE))
plot(p, p^2, type='l', col=2)

enter image description here