Plot single climatology

pr_plot_Climatology(df, Survey = "NRS", Trend = "Month", trans = "identity")

Arguments

df

dataframe with specified time period, station code and parameter

Survey

CPR or NRS data

Trend

specified time period

trans

scale of y axis on plot, whatever scale_y_continuous trans accepts

Value

a climatology plot

Examples

df <- pr_get_Indices(Survey = "NRS", Type = "P") %>%
dplyr::filter(Parameters == "PhytoBiomassCarbon_pgL", StationCode %in% c("NSI", "PHB"))

monthly <- pr_plot_Climatology(df, "NRS", "Month")

df <- pr_get_Indices(Survey = "CPR", Type = "Z") %>%
        dplyr::filter(Parameters == "ZoopAbundance_m3")
annual <- pr_plot_Climatology(df, "CPR", "Year")