如何使用 ggplot2 在绘图中添加垂直线


您可以使用geom_vline()函数快速向 ggplot2 图中添加垂直线,该函数使用以下语法:

geom_vline(xintercept, 线型, 颜色, 大小)

金子:

  • xintercept:在 x 交点上添加直线的位置。它可以是一个或多个值。
  • 线型:线型。默认值为“solid”,但您可以指定“twodash”、“longdash”、“dotted”、“dotdash”、“dash”或“blank”。
  • 颜色:线条的颜色。
  • 尺寸:线的宽度。

以下示例展示了如何在实践中使用此功能。

向路径添加一条垂直线

以下代码显示了如何向绘图添加单条垂直线:

 library (ggplot2)

#create data frame 
df <- data.frame(x=c(1, 3, 3, 4, 5, 5, 6, 9, 12, 15),
                 y=c(13, 14, 14, 12, 17, 21, 22, 28, 30, 31))

#create scatterplot with vertical line at x=10
ggplot(df, aes (x=x, y=y)) +
  geom_point() +
  geom_vline(xintercept= 10 )

垂直线ggplot2

向路径添加多条垂直线

以下代码显示如何向路径添加多条垂直线:

 library (ggplot2)

#create data frame 
df <- data.frame(x=c(1, 3, 3, 4, 5, 5, 6, 9, 12, 15),
                 y=c(13, 14, 14, 12, 17, 21, 22, 28, 30, 31))

#create scatterplot with vertical line at x=6, 10, and 11
ggplot(df, aes (x=x, y=y)) +
  geom_point() +
  geom_vline(xintercept=c( 6, 10, 11 )) 

ggplot2 geom_vline 函数

自定义垂直线

以下代码显示如何自定义路径上的垂直线:

 library (ggplot2)

#create data frame 
df <- data.frame(x=c(1, 3, 3, 4, 5, 5, 6, 9, 12, 15),
                 y=c(13, 14, 14, 12, 17, 21, 22, 28, 30, 31))

#create scatterplot with customized vertical line
ggplot(df, aes (x=x, y=y)) +
  geom_point() +
  geom_vline(xintercept= 5 , linetype=' dashed ', color=' blue ', size =2 ) 

ggplot2 中的垂直虚线

如果图表上有多条垂直线,您可以为每条线指定唯一的颜色:

 library (ggplot2)

#create data frame 
df <- data.frame(x=c(1, 3, 3, 4, 5, 5, 6, 9, 12, 15),
                 y=c(13, 14, 14, 12, 17, 21, 22, 28, 30, 31))

#create scatterplot with customized vertical lines
ggplot(df, aes (x=x, y=y)) +
  geom_point() +
  geom_vline(xintercept=c( 5,7 ) , linetype=' dashed ', color=c(' blue ', ' red ')) 

多条垂直线ggplot2

其他资源

以下教程解释了如何在 ggplot2 中执行其他常见任务:

如何在ggplot2中绘制线性回归线
如何在ggplot2中设置轴限制
如何在 ggplot2 中创建并排图

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注