标签: r plot
我必须使用R做一些绘图。我运行R-studio,并且使用了多个R发行版来检查是否存在相同的问题。 问题是plot()与type='l'将所有点连接在一起。有人可以帮忙吗?
plot()
type='l'
p <- sample(seq(0,2,0.01), 100, replace = T) plot(p, p^2, type='l', col=2)
答案 0 :(得分:2)
您可能必须先sort分。
sort
p <- sort(sample(seq(0, 2, 0.01), 100, replace=TRUE)) plot(p, p^2, type='l', col=2)