A plot method for public transportation networks (PTNs).

plot_ptn(
  g,
  color.coding = NULL,
  color.scheme = rev(sequential_hcl(5)),
  legend = FALSE,
  ...
)

Arguments

g

igraph object, network graph representing the public transportation network, vetrices represent stations, which are linked by an edge if there is a direct transfer between them

color.coding

numeric vector with length equal to the number of network nodes

color.scheme

character vector of length 5 indicating the vertex.color, default is rev(sequential_hcl(5))

legend

logical indicating whether legend for color-coding should be added or not.

...

further arguments to be passed to plot.igraph

See also

Other network helper: analyze_ptn()

Examples

data(ptnAth) plot_ptn(ptnAth)
data(ptnGoe) plot_ptn(ptnGoe)