大家好,我正在使用一个相当大的数据集,并试图在r中使用ggplot2制作分组barplot。我想按不同类型的成员获得每个月的计数。
到目前为止这是我的代码
bike_rides %>%
group_by(member_casual, month_of_use) %>%
summarize(Count = n()) %>%
ggplot(aes(x=month_of_use, y=Count)) +
geom_bar(aes(fill=member_casual, stat="identity", position= "dodge"))
这个输出会产生这样的错误:截图
我是R的新手,所以请对我有耐心,任何反馈都是非常感谢的。
谢谢。
能够回答我的问题要感谢@Jon Spring,尽早关闭aes使情况有所不同!
bike_rides %>%
group_by(member_casual, month_of_use) %>%
summarize(Count = n()) %>%
ggplot(aes(x=month_of_use, y=Count, fill=member_casual)) +
geom_bar(stat='identity', position= "dodge")
新图表熟能生巧!