Essential Ocean Variables plot

pr_plot_EOVs(
  df,
  EOV = "Biomass_mgm3",
  Survey = "NRS",
  trans = "identity",
  col = "blue",
  labels = TRUE
)

Arguments

df

dataframe containing timeseries data with Parameters and Values, output of pr_get_EOVs and pr_get_Coeffs

EOV

Essential Ocean Variable as a parameter

Survey

NRS, CPR or LTM 'Long term monitoring'

trans

scale for y axis

col

colour selection

labels

do you want to print labels on the x axes

Value

plot of timeseries, anomalies and climatology

Examples

df <- pr_get_EOVs("NRS") %>%
  pr_remove_outliers(2) %>%
  pr_get_Coeffs()
pr_plot_EOVs(df, EOV = "Biomass_mgm3", Survey = "NRS",
      trans = "identity", col = "blue", labels = FALSE)