在ggplot2中围绕一系列点放置边界

时间:2012-09-26 13:35:26

标签: r ggplot2 boundary

我有一系列我想要围绕边界的点。我怎么能这样做?

这些是我的观点: enter image description here

我尝试过geom_line,但这显然是错误的,因为它产生了这个!

enter image description here

由于

1 个答案:

答案 0 :(得分:4)

使用geom_path代替geom_line。这是一个例子:

i <- seq(0, 2*pi, length.out=50)
dat <- data.frame(x=cos(i), y=sin(i))

library(ggplot2)
ggplot(dat, aes(x, y)) + geom_line()

enter image description here

ggplot(dat, aes(x, y)) + geom_path()

enter image description here