2

我正在尝试使用以下格式绘制文件中不同坐标集的连接线:(两个坐标具有相同的 Y 值但不同的 X 值)

Y1 X11 X12
Y2 X21 X22
Y3 X31 X32

.
.

我能够找到一种使用 r 中的segments() 的方法。由于为这些坐标绘制线会产生数千条线,因此我想使用 ggplot2 为线条颜色提供 alpha 级别,以检查图中具有更多叠加线的区域。

4

1 回答 1

2

我不确定这是否是您想要的:

library(ggplot2)

#some data
df<-data.frame(y=1:1000,x1=sample(1:100.1000,replace=T))
df$x2<-df$x1+sample(5:10,1000,replace=T)

ggplot()  + geom_segment(data=df,aes(x = x1, y = y, xend = x2, yend = y),colour="red",alpha=0.5)
于 2013-06-22T23:33:51.337 回答