ggplot不显示条形图中的颜色

时间:2020-10-05 14:52:24

标签: r ggplot2

我下面的条形图没有显示条形中的颜色。

ggplot(top5_energyProducersMod, aes(year, ggwt_hours), fill = year) +
  geom_bar(stat = "identity", position = "dodge") +
  facet_wrap(~country_name)

enter image description here

我正在使用R Studio桌面版

1 个答案:

答案 0 :(得分:2)

填充颜色符合美学要求

ggplot(top5_energyProducersMod, aes(year, ggwt_hours,fill = year)) +
  geom_bar(stat = "identity", position = "dodge") +
  facet_wrap(~country_name)