- airportIndices
The indices of the airports (w.r.t. airports_sel) to include.
- airports_sel
The airports to plot. Might be further subset by arguments airportIndices, graph.
If NULL, then flights$airports will be used.
- connections_sel
A three columns data frame as output by flightCountMatrixToConnectionList().
If NULL, then flights$nFlights will be used to construct one.
- graph
An optional igraph::graph object, containing a flight graph to plot.
Vertices should either match the selected airports in number and order,
or be named with the corresponding IATA codes of the airports they represent.
- plotAirports
Logical. Whether to plot the airports specified.
- plotConnections
Logical. Whether to plot the connections specified.
- labelAirports
Logical. Whether to show the IATA code next to each plotted airport.
- returnGGPlot
If TRUE, a ggplot2::ggplot object is returned and not plotted immediately.
- useAirportNFlights
Logical. Whether to vary the size of the circles representing airports in the plot,
according to the number of flights at that airport.
- useConnectionNFlights
Logical. Whether to vary the size of the edges representing connections in the plot,
according to the number of flights on that connection.
- minNFlights
Numeric scalar. Only plot connections with at least this many flights.
- map
String or data.frame or NULL. What map to use as the background image.
Strings are passed to ggplot2::map_data(), data frames are assumed to be the output of ggplot2::map_data().
- vertexColors
Optional vector, named with IATA codes, to be used as colors for the vertices/airports.
- vertexShapes
Optional vector, named with IATA codes, to be used as shapes for the vertices/airports. Is coerced to character.
- edgeColors
Optional vector or symmetric matrix (character or numeric), to be used as colors for edges/connections.
If this is a vector, its entries must match the plotted connections (in the order specified in connections_sel or implied by igraph::get.edgelist).
If this is a matrix, its row/column names must be IATA codes, or its rows/columns match the plotted airports (in number and order).
- xyRatio
Approximate X-Y-ratio (w.r.t. distance on the ground) of the area shown in the plot.
- clipMap
Logical or numeric scalar. Whether to ignore the map image when determining the axis limits of the plot.
If it is a positive scalar, the plot limits are extended by that factor.
- useLatex
Whether to format numbers etc. as latex code (useful when plotting to tikz).
- edgeAlpha
Numeric scalar between 0 and 1. The alpha value to be used when plotting edges/connections.