如何用r中打开的圆圈绘制折线图?

时间:2018-05-31 23:03:29

标签: r ggplot2 data-visualization

我试图通过在geom_point中使用shape = 1的ggplot在r中绘制这样的图表,但该线穿过这些点。我想让线连接点而不会穿过它们。

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用

dt = data.frame(x=1:5, y=sample(5))
library(ggplot2)
library(cowplot)
ggplot(dt, aes(x,y)) +
  geom_line(size=2, color='darkgreen') +
  geom_point(size=4, shape=21, color = 'darkgreen', fill='white', stroke = 2)

即。绘制线上的点,并给它们填充颜色。

enter image description here