饼图与ggplot2具有特定的顺序和百分比注释

use*_*440 4 r ggplot2

我有一个如下数据框

+--------+-----------+-----+
|  make  |   model   | cnt |
+--------+-----------+-----+
| toyota |  camry    |  10 |
| toyota |  corolla  |   4 |
| honda  |  city     |   8 |
| honda  |  accord   |  13 |
| jeep   |  compass  |   3 |
| jeep   |  wrangler |   5 |
| jeep   |  renegade |   1 |
| accura |  x1       |   2 |
| accura |  x3       |   1 |
+--------+-----------+-----+
Run Code Online (Sandbox Code Playgroud)

我需要创建一个馅饼(是的,真的)每个品牌的百分比份额.

我现在做以下事情.

library(ggplot2)
library(dplyr)

df <- data.frame(Make=c('toyota','toyota','honda','honda','jeep','jeep','jeep','accura','accura'),
                 Model=c('camry','corolla','city','accord','compass', 'wrangler','renegade','x1', 'x3'),
                 Cnt=c(10, 4, 8, 13, 3, 5, 1, 2, 1))
dfc <- df %>%
  group_by(Make) %>%
  summarise(volume = sum(Cnt)) %>%
  mutate(share=volume/sum(volume)*100.0) %>%
  arrange(desc(volume))

bp <- ggplot(dfc[c(1:10),], aes(x="", y= share, fill=Make)) +
  geom_bar(width = 1, stat = "identity")
pie <- bp + coord_polar("y")
pie
Run Code Online (Sandbox Code Playgroud)

这给了我以下饼图非常整洁.

在此输入图像描述

但是我需要通过以下方式来增强它 - 如下图所示.

  1. 添加百分比标签
  2. 按顺序排列馅饼 share
  3. 删除标签,如0/100,25
  4. 添加标题

在此输入图像描述

PoG*_*bas 16

你必须改变的水平Make通过sharevolume(提供的数据已经排序):

dfc$Make <- factor(dfc$Make, levels = rev(as.character(dfc$Make)))
Run Code Online (Sandbox Code Playgroud)

并参与theme争论:

ggplot(dfc[1:10, ], aes("", share, fill = Make)) +
    geom_bar(width = 1, size = 1, color = "white", stat = "identity") +
    coord_polar("y") +
    geom_text(aes(label = paste0(round(share), "%")), 
              position = position_stack(vjust = 0.5)) +
    labs(x = NULL, y = NULL, fill = NULL, 
         title = "market share") +
    guides(fill = guide_legend(reverse = TRUE)) +
    scale_fill_manual(values = c("#ffd700", "#bcbcbc", "#ffa500", "#254290")) +
    theme_classic() +
    theme(axis.line = element_blank(),
          axis.text = element_blank(),
          axis.ticks = element_blank(),
          plot.title = element_text(hjust = 0.5, color = "#666666"))
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述


Rom*_*man 6

你可以试试:

df %>%
  group_by(Make) %>%
  summarise(volume = sum(Cnt)) %>%
  mutate(share=volume/sum(volume)) %>%
  ggplot(aes(x="", y= share, fill=reorder(Make, volume))) +
   geom_col() +
   geom_text(aes(label = scales::percent(round(share,3))), position = position_stack(vjust = 0.5))+
   coord_polar(theta = "y") + 
   theme_void()
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

添加guides(fill = guide_legend(reverse = TRUE))反向图例