我下面的条形图没有显示条形中的颜色。
ggplot(top5_energyProducersMod, aes(year, ggwt_hours), fill = year) +
geom_bar(stat = "identity", position = "dodge") +
facet_wrap(~country_name)
我正在使用R Studio桌面版
答案 0 :(得分:2)
填充颜色符合美学要求
ggplot(top5_energyProducersMod, aes(year, ggwt_hours,fill = year)) +
geom_bar(stat = "identity", position = "dodge") +
facet_wrap(~country_name)