
If i dont use "position=dodge" i 'm getting the actual values of no_of_rides., when use "postion=dodge" the y axis values appear like this "0e+00,2e+05". How should i rectify this?
total_rides_v2 %>% mutate(weekday=wday(total_rides_v2$started_at,label = TRUE)) %>% group_by(member_casual,weekday) %>% summarise(no_of_rides=n(),average_duration=mean(ride_length))%>% arrange(member_casual,weekday) %>% ggplot(aes(x=weekday,y=no_of_rides,fill=member_casual))+geom_col(position = "dodge")