Provides API using compedapi to Melbourne pedestrian data in a tidy data form.
melb_walk(from = to - 6L, to = Sys.Date() - 1L, na.rm = FALSE, session = NULL)
from | Starting date. |
---|---|
to | Ending date. |
na.rm | Logical. |
session |
|
A tibble including these variables as follows:
Sensor: Sensor name (43 sensors up to date)
Date_Time: Date time when the pedestrian counts are recorded
Date: Date associated with Date_Time
Time: Time of day
Count: Hourly counts
It provides API using compedapi, where counts are uploaded on a daily basis. The up-to-date data would be till the previous day. The data is sourced from Melbourne Open Data Portal. Please refer to Melbourne Open Data Portal for more details about the dataset and its policy.
if (FALSE) { # Retrieve last week data melb_walk() # Retrieve data of a speficied period start_date <- as.Date("2017-07-01") end_date <- start_date + 6L melb_walk(from = start_date, to = end_date) }