R:在条形图上添加垂直线

时间:2020-05-27 21:56:59

标签: r bar-chart

mydat <- c(rep(4:10, each = 3), rep(1:2, each = 2))
barplot(table(mydat))
abline(v = 3, col = "blue")

这给了我以下情节:enter image description here 我想要在x=3处有一条垂直线。但是,由于x轴的间隔方式,垂直线似乎不在正确的位置。我怎样才能解决这个问题?即我希望我的情节看起来像这样:

enter image description here

1 个答案:

答案 0 :(得分:5)

要在第2条和第3条之间绘制一条线,请指定app.config的返回值,然后在这些值的第2条和第3条的application.config值中进行绘制。

barplot

enter image description here