Plot single climatology

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

Arguments

df

dataframe with specified time period, station code and parameter

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 = "Phytoplankton") %>%
dplyr::filter(Parameters == "PhytoBiomassCarbon_pgL", StationCode %in% c("NSI", "PHB"))

monthly <- pr_plot_Climatology(df, Trend = "Month")

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