Session Ready
Exercise

Number of daily rides

Make a summary plot of the number of daily rides with workweek / weekend days colored differently.

Instructions
100 XP
  • Create a dataset of daily counts using group_by() and summarise(). Group by start_day and be sure to include the variable weekday as well.
  • Plot the result, using points to plot the number of rides on the y-axis and the start day on the x-axis. Color the points by weekday.