我在Kaggle中用R写了下面的代码,但是输出错误,我重新安装了整齐诗句和ggplot 2库,仍然显示错误。我希望在这里找到解决方法,谢谢!
rides_hour %>%
ggplot(data = rides_hour)+
geom_bar(mapping = aes(x = time, y = ride_count, fill = member_casual))
Error in ggplot(., data = rides_hour): object 'rides_hour' not found
Traceback:
1. rides_hour %>% ggplot(data = rides_hour)
2. ggplot(., data = rides_hour)
1条答案
按热度按时间bxgwgixi1#
rides_hour必须是data.frame。如果使用的是
data = rides_hour
,则不需要使用rides_hour %>% ggplot...
。请改用
ggplot(data = rides_hour) + geom_bar(mapping = aes(x = time, y = ride_count, fill = member_casual))
。最理想的情况是与我们分享你正在使用的数据。)