简体   繁体   English

ggplot 不显示条形图中的颜色

[英]ggplot doesn't display the colors in the bar graph

My bar graph below doesn't show the colors in the bars.我下面的条形图没有显示条形图中的颜色。

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

在此处输入图片说明

I'm using the R studio desktop version我正在使用 R studio 桌面版

The fill color goes with the aesthetics:填充颜​​色符合美学:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM