Essential Ocean Variables plot

pr_plot_EOVs(
  df,
  EOV = "Biomass_mgm3",
  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

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") %>%
  dplyr::filter(StationCode == "PHB") %>%
  pr_remove_outliers(2)
pr_plot_EOVs(df, EOV = "Biomass_mgm3",
      trans = "identity", col = "blue", labels = FALSE)