plot_species: Create species specific overview plot.
Description
This plotting routine is based on Raphael's (Ifremer) plotting routine
used during model calibration. Currently 6 plots are created by default:
- Biomass over time
- Biomass over time per age
- StructN over time per age
- ResN over time per age
- Condition over time per age
- Numbers over time per age
Usage
plot_species(data_pre, species)
Arguments
data_pre
List of preprocessed Atlantis simulation. The list of dataframes
should be created with model-preprocess.Rmd.
species
Character srtring giving the name of the species to plot. Only age
based species are supported.
# NOT RUN {plot <- plot_species(preprocess, species = "Shallow piscivorous fish")
# Use grid.arrange to draw the plot on the current devicegridExtra::grid.arrange(plot)
# }