3

このような塗りつぶされた棒グラフがあります

library(dplyr)
library(ggplot2)

df <- data.frame(facet=c(rep(1,6),rep(2,6)),type=rep(c('a','b','c'),2), subtype=c('x','y'), value=c(10,20,30,10,50,70))

df %>% group_by(type, facet) %>% 
mutate(pct=value/sum(value)) %>%
mutate(pos=cumsum(pct) - (0.5 * pct)) %>%
ggplot(aes(type, pct, fill=subtype)) + geom_bar(stat='identity') +
geom_text(aes(label=paste0(round(100*pct, 0), '%'),y=pos)) +   facet_grid(.~facet, margins=TRUE)

ファセットで合計を表示しない場合は機能します。しかし、%データラベルを表示するために使用される方法が原因で(もっと良い方法があるのだろうか)、合計ファセットが台無しになります。何かアドバイス?ありがとう。

4

1 に答える 1

5

ラベルを適切に配置し、事前にマージン プロットを定義しました。これはあなたが期待した出力だと思います。でこれを達成する方法があるかどうかはわかりませんでしたfacet_grid(., margin = TRUE)

df <- data.frame(facet=c(rep(1,6),rep(2,6)),type=rep(c('a','b','c'),2),
                 subtype=c('x','y'), value=runif(12, 0, 100))

df1  <- df %>% 
        arrange(desc(subtype)) %>% 
        mutate(facet = factor(facet, levels = c("1", "2", "(all)"))) %>%
        group_by(type, facet) %>% 
        mutate(pct=value/sum(value),
               pos=cumsum(pct) - (0.5 * pct)) 

df2 <- df1 %>%
      group_by(type, subtype) %>%
      summarise(facet = factor("(all)", levels = c("1", "2", "(all)")),
                pct = sum(pct)/2,
                pos = sum(pos/2))  

  bind_rows(df1, df2) %>%
  ggplot(aes(type, pct, fill=subtype)) + 
  geom_bar(stat='identity', position = "stack") +
  geom_text(aes(label=paste0(round(100*pct, 0), '%'),y=pos)) +   
  facet_grid(.~facet)

ここに画像の説明を入力

于 2017-01-05T15:08:43.940 に答える