How can I fix this error this is what I am trying to do
Bike_rides2$Monthly <- lubridate::month(Bike_rides2$Weekly)
Bike_rides2 %>% ggplot() = geom_col(aes(x=Weekly,y=count)) +
scale_y_continuous(labels = comma) +
labs(title = "Count of Rides per Day",
subtitle = "(Bases on 28 day average",
y="Average Rides per Day")
Thank you in advance
FJCC
2
The = after ggplot() should be a +
1 Like
Thank you so much! Appreciate it!
system
Closed
4
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.