R中的条形图标签:在绘图区域下方添加水平线

时间:2015-12-01 09:03:11

标签: r bar-chart

我的代码:

x <- c(10, 50, 20, 40)
barplot(x, names.arg=LETTERS[1:4])

我想要的是:

enter image description here

我在R和Adobe Acrobat的帮助下制作了这个数字。我想知道我可以使用纯R代码获得这个数字吗?

2 个答案:

答案 0 :(得分:2)

您可以使用mtext

添加文字
mtext("E", side = 1, line = 3, adj = 0.375)
mtext("F", side = 1, line = 3, adj = 0.875)

然后使用lines绘制线条,但指示xpd=T

lines(c(0,3.5),c(-10,-10),xpd=TRUE)
lines(c(3.8,4.8),c(-10,-10),xpd=TRUE)

但是,您需要手动调整它。 enter image description here

答案 1 :(得分:1)

感谢Pascal。我得到了另一个答案。

x <- c(10, 50, 20, 40)
barplot(x, names.arg=LETTERS[1:4])

mtext("E", side = 1, line = 3, adj = 0.375)
mtext("F", side = 1, line = 3, adj = 0.875)

axis(1, at=c(0.5,1,2,3,3.3), line=2.5, tick=T, labels=rep("",5), lwd=2, lwd.ticks=0)
axis(1, at=4+c(0.1,0.2,0.3,0.4,0.5),line=2.5,tick=T,labels=rep("",5), lwd=2, lwd.ticks=0) 

enter image description here