Effect of membership and weekday
Expanding on the previous plot, let's add one more variable into our summary, adding a facet dimension for whether or not the rider is a member of BIXI.
This exercise is part of the course
Visualizing Big Data with Trelliscope in R
Exercise instructions
- Compute the number of rides,
n
for each combination of start week, start hour of day, weekday, and membership. - Use points to plot
n
on the y-axis andstart_wk
on the x-axis and color the points byweekday
. - Facet using
facet_grid()
to varystart_hod
across columns andmembership
across rows.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
library(dplyr)
library(ggplot2)
# Compute wk_memb_hod
wk_memb_hod <- bike %>%
___ %>%
___
# Plot the result
ggplot(wk_memb_hod, aes(___, ___, color = ___)) +
___ +
facet_grid(___ ~ ___) +
scale_y_sqrt()