R中的绘图:将点连接到轴

时间:2015-05-13 08:13:32

标签: r plot

我们假设我有一个简单的情节:

plot(0.3, 0.3, lwd=7)

我想绘制连接(0.3,0.3)点与X和Y轴的两条线。 abline在这里没用,因为它超越了这一点。 当我有6-7分时,我想应用相同的解决方案。

1 个答案:

答案 0 :(得分:1)

您可以使用segments功能:

假设您的点的坐标存储在向量xy中,您可以这样做:

plot(x, y, lwd=7)
segments(x0=x, y0=0, x1=x, y1=y) # segments from x axis to points
segments(x0=0, y0=y, x1=x, y1=y) # segments from y axis to points

您的观点示例

x <- y <- 0.3
plot(x, y, lwd=7)
segments(x, 0, x, y)
segments(0, y, x, y)

enter image description here