标签: r graph line
我有一个数据散点图,我想将每个点连接到每个点。我在网上找到的所有内容仅将一个点连接到下一个点(例如,使用type =“ l”)。有办法吗?
谢谢!
答案 0 :(得分:3)
基于表明使用plot(x)绘制点的注释:
plot(x)
# define test data and plot it set.seed(123) x <- rnorm(10) # test data plot(x) # add segments ix <- combn(length(x), 2) segments(ix[1, ], x[ix[1, ]], ix[2, ], x[ix[2, ]])