我遇到的错误是:
错误:必须从色调调色板中请求至少一种颜色。
我尝试了其他无效的帮助论坛中的可用解决方案。
运行以下代码时出现错误。
library(ggplot2)
ggplot(hourly_data1,aes(hour, power))+
geom_boxplot(aes(fill=monthname),outlier.shape=NA) +
facet_wrap(~monthname)
ggplot(hourly_data1,aes(hour, power))+
geom_boxplot(aes(fill=dayname),outlier.shape=NA) +
facet_wrap(~dayname) +
geom_smooth(aes(group=1))