Plot basic timeseries

pr_plot_TimeSeries(df, Survey = "NRS", trans = "identity")

Arguments

df

dataframe with SampleDate_Local, station code and parameter name and values

Survey

CPR or NRS data

trans

scale of y axis on plot, whatever scale_y_continuous trans accepts

Value

a timeseries plot

Examples

df <- pr_get_Indices("NRS", "Z") %>%
  dplyr::filter(Parameters == "Biomass_mgm3", StationCode %in% c("NSI", "PHB"))
timeseries <- pr_plot_TimeSeries(df, Survey = "NRS")