在堆积的条形图上居中文本标签

时间:2015-07-28 00:11:01

标签: r plot ggplot2 format bar-chart

条形图的颜色基于' MaskID'在这段代码中,我能够制作出' MaskID'将名称命名为文本标签,但我希望名称以相应的颜色为中心。

你会怎么做?

     MaskID        x     y
0       ABC    Name1     0 
1       ABC    Name2     0  
2       ABC    Name3     1
3       ABC    Name4     0
..      ...      ...   ...
100     DEF    Name1     0
101     DEF    Name2     0
102     DEF    Name3     3
103     DEF    Name4     4
104     DEF    Name5     0

(还要考虑文本标签不显示0 y值的条形图)

{{1}}

这是我构建的图表的一部分:

enter image description here

1 个答案:

答案 0 :(得分:5)

这似乎有用,虽然我觉得它有点复杂。它使用ggplot_build提取描述条形位置的数据,找到它们的中点和相应的标签,然后添加文本。

## Make the graph (-the text parts)
p <- ggplot(df, aes(x, y))
p <- p + xlab("xlabel")
p <- p + ylab("ylabel")
p <- p + ggtitle("ylabel vs xlabel")
p <- p + geom_bar(stat="identity", aes(fill=MaskID))
p <- p + theme(axis.text.x = element_text(angle=90, vjust=-0.005))

## Get the bar data from ggplot
dd <- ggplot_build(p)[[1]][[1]]

## Get the y-values in the middle of bars
xy <- unique(dd[dd$y != 0, c("x", "y")])
dat <- with(xy, data.frame(
    x=x,
    y=unlist(sapply(split(y, x), function(z) diff(c(0, z))/2 + head(c(0, z), -1)))
))

## Get the labels
labels <- with(df[df$y!=0,], unlist(split(MaskID, x)))

## Add the text using the new xy-values and labels
p + geom_text(data=dat, aes(x, y), label=labels, angle=90)

enter image description here