R:在水平条形图上的条形旁边添加值

时间:2017-05-15 12:41:05

标签: r plot bar-chart

我试图将矢量中的值添加到水平条形图的右侧,但没有成功。我已尝试修复并混合一些代码以及我的x和y标签及其展示位置。这是我的代码

CREATE USER 'jeffrey'@'localhost'
WITH MAX_QUERIES_PER_HOUR 500 MAX_UPDATES_PER_HOUR 100;

1 个答案:

答案 0 :(得分:1)

以下是图表的代码。

a <- c(315, 149, 128, 97, 68, 49, 38, 0)
par(mar=c(4,4,1,1), oma=c(0,0,0,0), las=1)
posbar <- barplot(a, horiz = TRUE, col="darkolivegreen3", 
    main="Average Occupancy",
    ylab = "", xlab="", xlim=c(0,350),
    names.arg = c("0-1h", "1-2h", "2-3h", "3-4h", "4-5h", "5-6h", "6-7h", "7-8h"))
mtext(side=1, text="Minutes", line=2.5)
mtext(side=2, text="Hours", line=3, las=0)
text(y=posbar, x=a, pos=4,labels=a)

enter image description here