1. ホーム
  2. r

[解決済み] ggplot2 で積み上げ棒グラフにデータ値を表示する

2022-07-18 03:02:27

質問

ggplot2で積み上げ棒グラフにデータ値を表示したい。以下は私が試したコードです。

Year      <- c(rep(c("2006-07", "2007-08", "2008-09", "2009-10"), each = 4))
Category  <- c(rep(c("A", "B", "C", "D"), times = 4))
Frequency <- c(168, 259, 226, 340, 216, 431, 319, 368, 423, 645, 234, 685, 166, 467, 274, 251)
Data      <- data.frame(Year, Category, Frequency)
library(ggplot2)
p <- qplot(Year, Frequency, data = Data, geom = "bar", fill = Category,     theme_set(theme_bw()))
p + geom_text(aes(label = Frequency), size = 3, hjust = 0.5, vjust = 3, position =     "stack") 

<イグ

これらのデータ値を各部の真ん中に表示させたいと思います。この点に関して何か助けがあれば、非常に感謝します。ありがとうございます。

どのように解決するのですか?

から ggplot 2.2.0 ラベルを簡単に重ねることができます。 position = position_stack(vjust = 0.5)geom_text .

ggplot(Data, aes(x = Year, y = Frequency, fill = Category, label = Frequency)) +
  geom_bar(stat = "identity") +
  geom_text(size = 3, position = position_stack(vjust = 0.5))

また、"に注意してください。 position_stack()position_fill() はグループ化の逆順で値をスタックするようになり、デフォルトのスタック順が legend." に一致するようになりました。


の古いバージョンで有効な回答 ggplot :

ここでは、バーの中点を計算するアプローチを紹介します。

library(ggplot2)
library(plyr)

# calculate midpoints of bars (simplified using comment by @DWin)
Data <- ddply(Data, .(Year), 
   transform, pos = cumsum(Frequency) - (0.5 * Frequency)
)

# library(dplyr) ## If using dplyr... 
# Data <- group_by(Data,Year) %>%
#    mutate(pos = cumsum(Frequency) - (0.5 * Frequency))

# plot bars and add text
p <- ggplot(Data, aes(x = Year, y = Frequency)) +
     geom_bar(aes(fill = Category), stat="identity") +
     geom_text(aes(label = Frequency, y = pos), size = 3)

<イグ