将值添加到R中的表的barplot

时间:2014-12-14 03:26:52

标签: r bar-chart

我正在尝试使用条形图绘制表格并为其添加值。

tt = structure(c(7L, 13L, 24L, 30L, 30L, 38L, 35L, 45L, 37L, 
43L, 38L, 59L, 33L, 45L, 37L, 58L), .Dim = c(2L, 8L), .Dimnames = structure(list(param = c("A", 
"B"), xvar = c("5", "6", "7", "8", "9", "10", "11", "12")), .Names = c("param", "xvar")), class = "table")
tt
     xvar
param  5  6  7  8  9 10 11 12
    A  7 24 30 35 37 38 33 37
    B 13 30 38 45 43 59 45 58

bb= barplot(tt)
text(bb, 0, tt)

enter image description here

bb= barplot(tt)
text(bb, tt, tt)

enter image description here

两者都没有正确放置值。我也在text()中尝试了t(tt),但它无法正常工作。如何才能做到这一点。谢谢你的帮助。

1 个答案:

答案 0 :(得分:10)

嗯,这很有效,但我必须认为这是更好的方法......

bb <- barplot(tt, col=c("grey60","grey80"))
text(bb,tt[1,]-4,labels=tt[1,],cex=.8)
text(bb,colSums(tt)-4,labels=tt[2,],cex=0.8)

这是一个ggplot解决方案,只是为了完整性。

library(ggplot2)
ggplot(as.data.frame(tt),aes(x=factor(xvar),y=Freq,fill=param)) +
  geom_bar(stat="identity",position="stack")+
  geom_text(aes(label=Freq),position="stack",vjust=1)+
  scale_fill_manual(values=c("grey60","grey80"))+
  theme_bw()