Plot two figures showing catch-per-unit-effort data
PlotMap.fn.Rd
Plot catch-per-unit-effort (CPUE) data across all years and by year and save them to the disk. Figures are created using ggplot2.
Usage
PlotMap.fn(
dir = NULL,
dat,
main = NULL,
dopng = lifecycle::deprecated(),
plot = 1:2
)
Arguments
- dir
Directory where output will be saved. The directory where the file should be saved. If dir = NULL no output will be saved.
- dat
An object created by
pull_catch()
.- main
A string that will be prepended to the name of the saved png (i.e., "NWFSC" results in a file called "NWFSC_CPUE_Map.png").
- dopng
Deprecated with nwfscSurvey 2.1 because providing a non-NULL value to
dir
can serve the same purpose asdopng = TRUE
without the potential for errors whendopng = TRUE
anddir = NULL
. Thus, users no longer have to specifydopng
to save the plot as a png.- plot
A vector of integers to specify which plots you would like. The default is to print both figures.
coastwide data across all years
coastwide data by year
Value
Figures are saved to the disk according to which plots are asked
for in plot
. Each of the specified files are saved to a directory called
map_plots
inside of dir
, the specified directory. No objects are
returned to the user. But, the figures are printed to new windows if they
are not saved to the disk.