Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 814 Bytes

README.md

File metadata and controls

44 lines (29 loc) · 814 Bytes

vbzdelays

Travis build status

The goal of vbzdelays is to analyze VBZ delays.

Installation

You can install vbzdelays with:

remotes::install_github("miraisolutions/vbzdelays")

Example

Load line data

data <- vbzdelays::get_line_data(line = 11)

Plot delays by hour per weekday

vbzdelays::plot_delays_by_weekday_hour(data)

Produce delay analysis report by line

report <- vbzdelays::render_line_report(line = 11, tempdir())
browseURL(report)

Create a website as collection of reports for all lines

website <- vbzdelays::render_site(output_dir = tempfile("_site"))
browseURL(website)