Hi, I'm a beginner, thanks to everybody for your help
How do I display the actual values next to the Y axis instead of "0e+00" etc?
readytable %>%
mutate(weekday = wday(start_time, label = TRUE)) %>%
group_by(usertype, weekday) %>%
summarise(number_of_rides = n()
,average_duration = mean(tripseconds)) %>%
arrange(usertype, weekday) %>%
ggplot(aes(x = weekday, y = number_of_rides, fill = usertype)) +
geom_col(position = "dodge")