利用ggplot绘制带百分比饼图

1. 介绍

有的时候我们需要利用饼图进行统计结果的占比展示,在R中可以利用ggplot进行绘制,但是ggplot中实际上并没有直接的函数可以绘制饼图,饼图实际上是geom_bar的一个变形。下面我们就来看看如何利用ggplot绘制带百分比的饼图。

2. 步骤

library(dplyr)
library(ggplot2)
library(ggmap) # 为了引用主题theme_nothing,用来消除原始ggplot绘图自带的一切标签
df <- data.frame(value = c(52, 239, 9),
                 Group = c("Positive", "Negative", "Neutral")) %>%
   # factor levels need to be the opposite order of the cumulative sum of the values
   mutate(Group = factor(Group, levels = c("Neutral", "Negative", "Positive")),
          cumulative = cumsum(value),
          midpoint = cumulative - value / 2,
          label = paste0(Group, " ", round(value / sum(value) * 100, 1), "%"))

ggplot(df, aes(x = 1, weight = value, fill = Group)) +
   geom_bar(width = 1, position = "stack") +
   coord_polar(theta = "y") ## 以y轴建立极坐标
   +
   geom_text(aes(x = 1.3, y = midpoint, label = label)) ## 加上百分比标签的位置和数值
   +
   theme_nothing()   

绘制得到的图:


利用ggplot绘制带百分比饼图_第1张图片
绘制得到的饼图

3.总结

利用ggplot能够绘制非常漂亮的饼图,但是一定要注意插入百分比标签的位置。

你可能感兴趣的:(利用ggplot绘制带百分比饼图)