melb_walk: API using compedapi to Melbourne pedestrian data

View source: R/scrape.R

melb_walkR Documentation

API using compedapi to Melbourne pedestrian data

Description

Provides API using compedapi to Melbourne pedestrian data in a tidy data form.

Usage

melb_walk(from = to - 6L, to = Sys.Date() - 1L, na.rm = FALSE, session = NULL)

Arguments

from

Starting date.

to

Ending date.

na.rm

Logical. FALSE is the default suggesting to include NA in the dataset. TRUE removes the NAs.

session

NULL or "shiny". For internal use only.

Details

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.

Value

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

See Also

melb_walk_fast

Examples

## Not run: 
# 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)

## End(Not run)

earowang/walk documentation built on Nov. 23, 2022, 7:30 a.m.