为什么 ggplot 只填充我的一些堆叠条形图而不填充其他条形图?

Why is ggplot only filling in some of my stacked bars and not others?

我正在使用 ggplot 制作堆叠条形图,但出于某种原因,尽管使用相同的标准填充了其他条形图,但它仍然留下 2 个未填充的条形图。为什么会这样,我怎样才能防止这种情况发生?

library(ggplot2)
library(dplyr)
library(scales)
#Code to replicate

data <- tibble(team = factor(c(rep("Team 1", 10), rep("Team 2", 10), rep("Team 3", 10), rep("Team 4", 10)), levels = c("Team 1", "Team 2", "Team 3", "Team 4")),
               state = factor(c(rep(c("Won", "Tied",
                                      "Rematch", "Postponed", "Forfeit",
                                      "Lost", "Withdrew", "Ongoing",
                                      "Undetermined", "Unknown"), 4)), levels = c("Won", "Tied",
                                                                                  "Rematch", "Postponed", "Forfeit",
                                                                                  "Lost", "Withdrew", "Ongoing",
                                                                                  "Undetermined", "Unknown")),
               count = c(1920, 80, 241, 5, 310, 99, 2, 127, 20, 33,
                         48, 1, 8, 0, 11, 3, 0, 4, 3, 3,
                         140, 5, 8, 0, 17, 2, 0, 5, 3, 7,
                         477, 20, 59, 1, 106, 1, 0, 33, 7, 10))


data <- data %>%
  group_by(team) %>%
  mutate(percentage = round((count/sum(count, na.rm = TRUE)), 2))


data %>%
  ggplot(aes(fill= state, y = percentage, x = team)) + 
  geom_col(position="stack",width = 0.4) +
  coord_flip() +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1), limits = c(0, 1)) +
  geom_text(aes(label = scales::percent(percentage, accuracy = 1)), 
            position = position_stack(vjust = .5), 
            check_overlap = TRUE )

这是它的样子;第 3 队和第 2 队的浮动 75% 和 59% 分别应该是第 4 队和第 1 队使用的鲑鱼色。我知道这不是打字错误,因为我为每个人使用了相同的标题。

将位置参数更改为 fill

data %>%
  ggplot(aes(fill= state, y = percentage, x = team)) + 
  geom_col(position="fill",width = 0.4) +
  coord_flip() +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1), limits = c(0, 1)) +
  geom_text(aes(label = scales::percent(percentage, accuracy = 1)), 
            position = position_stack(vjust = .5), 
            check_overlap = TRUE )