Error in check_breaks_labels(breaks, labels) : object 'comma' not found

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

The = after ggplot() should be a +

1 Like

Thank you so much! Appreciate it!

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.