Get startedGet started for free

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.

This exercise is part of the course

Reshaping Data with tidyr

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

sensor_df %>% 
  # Complete the time column with a 20 minute interval
  ___(time = ___(___, ___, by = ___),
      fill = ___(___ = ___, ___ = ___))
Edit and Run Code