Counting office occupants
Imagine you're an office facility manager and want to know how many people are present throughout the day. You've installed a sensor at the entrance that counts the number of people entering and leaving the building. The sensor sends an update at the end of every 20 minute time slot if at least one person passed.
To create a dataset ready for visualization, you'll combine the different techniques you've learned so far.
The dplyr
and ggplot2
packages have been pre-loaded for you.
Este ejercicio forma parte del curso
Reshaping Data with tidyr
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
sensor_df %>%
# Complete the time column with a 20 minute interval
___(time = ___(___, ___, by = ___),
fill = ___(___ = ___, ___ = ___))