如何在ggplot2中为基于因子的饼图添加百分比标签

时间:2018-05-10 11:57:00

标签: r ggplot2 pie-chart percentage labels

我对ggplot相当新,所以这可能是一个非常简单的问题,但我无法解决它。我使用ggplot根据数据框中的因子变量构建饼图。变量级别为“F”和“M”。

hcgen <- ggplot(hc, aes(x = factor(1), fill = gender))

然后我使用空白主题来可视化图表

hcgen + geom_bar(width = 1) + coord_polar("y") + blank_theme + theme(axis.text.x=element_blank())

我使用了不同的选项来添加标签,但没有任何效果。我用过例如:

geom_text(aes(y = value/3 + c(0, cumsum(value)[-length(value)]), + label = percent(value/100)), size=5)

但这会产生以下错误

Error in FUN(X[[i]], ...) : object 'value' not found

我做错了什么?

1 个答案:

答案 0 :(得分:0)

看起来您正在复制并粘贴您不知道数据的代码,在这种情况下,您正在使用的代码是:

library(ggplot2)
library(scales)

df <- data.frame(
 group = c("Male", "Female", "Child"),
 value = c(25, 25, 50))

bp <- ggplot(df, aes(x="", y=value, fill=group))+
  geom_bar(width = 1, stat = "identity")

pie <- bp + coord_polar("y", start=0)

blank_theme <- theme_minimal()+
  theme(
    axis.title.x = element_blank(),
    axis.title.y = element_blank(),
    panel.border = element_blank(),
    panel.grid=element_blank(),
    axis.ticks = element_blank(),
    plot.title=element_text(size=14, face="bold")
  )

pie + scale_fill_brewer("Blues") + blank_theme +
  theme(axis.text.x=element_blank())+
  geom_text(aes(y = value/3 + c(0, cumsum(value)[-length(value)]), 
                label = percent(value/100)), size=5)

Pie

添加dplyr和一些ggplot2更新当然可以简化它:

library(dplyr)
library(ggplot2)
library(scales)

df <- data.frame(
  group = c("Male", "Female", "Child"),
  value = c(25, 25, 50))

df %>% 
  ggplot(aes(x="", y=value, fill=group)) +
  geom_col() +
  geom_text(aes(label = percent(value/100)), position = position_stack(vjust = 0.5)) +
  scale_fill_brewer(palette = "Blues") +
  coord_polar("y") + 
  theme_void() +
  labs(title = "TITLE",
       fill = "LEGEND")

update