geom_path直径用坐标系缩放

时间:2015-06-10 13:25:56

标签: r ggplot2 width line coordinate-systems

我使用ggplot绘制一些轨迹。我希望geom_path行的大小(直径或半径)相对于坐标系。

以下是一些可重现的代码:

x <- c(1,5,3,7,6)
y <- c(0,6,4,4,8)
data <- as.data.frame(cbind(x, y))
ggplot(data, aes(x = x, y = y)) + geom_path(size = 2, lineend = "round") + coord_fixed(ratio = 1)

在这种情况下,我希望线的直径为2个坐标系单位。

0 个答案:

没有答案