Kaggle中的R图

bejyjqdl  于 2022-12-20  发布在  其他
关注(0)|答案(1)|浏览(159)

我在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)
bxgwgixi

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))
最理想的情况是与我们分享你正在使用的数据。)

相关问题