Skip to contents

Takes the tibble created by read_output_trips to create a line plot of the count of destination activities for a specific arrival time Using the parameter unite_activities, specific activities can be renamed into one with the name specified with united_name (by default 'united')

Usage

plot_arrtime_by_act(
  trips_table,
  unite_activities = character(0),
  united_name = "united"
)

Arguments

trips_table

tibble of trips_output (from read_output_trips)

unite_activities

optional, vector of character strings, changes names of chosen categories to a new specified name (i.e. school and university to education)

united_name

optional, character string, specifies the new name of the united activities

Value

A plotly object representing the line plot of arrival time by activity.