Label error in geom_bar [duplicate]

笑着哭i 提交于 2019-12-08 13:58:03

问题


I'm trying put label in geom_bar but I can't.

My code

df <- data.frame(
 uni = rep(c("D","E","F","G","H"),3),
 Var1 = factor(c(rep("A",5),rep("B",5),rep("C",5))),
 Freq = c(53.6,50.0,48.5,50.0,56.2,23.2,18.5,27.7,20.0,14.3,23.2,31.5,23.8,30.0,29.6))


df$label = paste(round(df$Freq,0),"%", sep = "")
ggplot(data = df, aes(x = uni, y = Freq, fill = Var1)) +
geom_bar(stat = "identity",position = "fill", width = 1) +
scale_fill_brewer(palette = 3) + geom_text(aes(y = Freq, label = label, position ="identity", face = "bold", size = 1), hjust=0.5, vjust=0.5) + 
xlab('') + 
ylab('') + 
labs(fill = '') + 
ggtitle('Example') + 
theme(axis.text.y = element_text(size=14,face="bold"), panel.background = element_blank(), plot.title = element_text(size = 20, colour = "black", face = "bold")) + 
guides(size=FALSE)


回答1:


By using ddply from the plyr pacakage, we can create a new variable based on the cumulative sums to get the correct position for each label:

library(plyr)
df <- data.frame(
    uni = rep(c("D","E","F","G","H"),3),
    Var1 = factor(c(rep("A",5),rep("B",5),rep("C",5))),
    Freq = c(53.6,50.0,48.5,50.0,56.2,23.2,18.5,27.7,20.0,14.3,23.2,31.5,23.8,30.0,29.6))

df = ddply(df, .(uni), transform, labPosition = cumsum(Freq)-Freq/2)

df$label = paste(round(df$Freq,0),"%", sep = "")
ggplot(data = df, aes(x = uni, y = Freq, fill = Var1)) +
    geom_bar(stat = "identity", width = 1) +
    scale_fill_brewer(palette = 3) + 
    geom_text(aes(y = labPosition, label = label, position ="identity"), hjust=0.5, vjust=0.5, size = 1, face = "bold") + 
    xlab('') + 
    ylab('') + 
    labs(fill = '') + 
    ggtitle('Example') + 
    theme(axis.text.y = element_text(size=14,face="bold"), panel.background = element_blank(), plot.title = element_text(size = 20, colour = "black", face = "bold")) + 
    guides(size=FALSE)

This creates a new variable of the cumulative sum by group, and then subtracts the frequency itself divided by 2 to center it in the middle of that segment.



来源:https://stackoverflow.com/questions/23832145/label-error-in-geom-bar

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!