Learn R Programming

barrks (version 1.1.0)

bso_plot_flight_diagram: Plot a flight diagram (BSO only)

Description

A flight diagram illustrates the daily share of flying individuals over time.

Usage

bso_plot_flight_diagram(
  .pheno,
  .station = prop_stations(.pheno)[1],
  .colors = barrks_colors("bso_flight"),
  .labels = barrks_labels("bso_flight"),
  .xlim = NULL,
  .legend = "topright",
  ...
)

Value

None

Arguments

.pheno

A BSO phenology (see bso_phenology())

.station

Pass a character vector to choose a station assigned to .pheno by its name, or pass a different station. See stations_create() for details.

.colors, .labels

Vectors of colors/labels starting from the first and the second flght of the hibernating generation followed consecutively by elements for the filial generations (first and second flight).

.xlim

Date vector of length to that limits the dates plotted.

.legend

Pass FALSE if no legend should be plotted. Otherwise the value will be passed to legend() as first argument. Look there for more information.

...

arguments passed to graphics::barplot().

Examples

Run this code
# \donttest{
# This may take a few minutes...

# calculate phenology
p <- bso_phenology('bso', barrks_data('stations'), .quiet = TRUE)

bso_plot_flight_diagram(p)
# }

Run the code above in your browser using DataLab