Plot temporal Trends in plankton data
pr_plot_Trends(df, Trend = "Raw", method = "lm", trans = "identity")
a timeseries plot
df <- pr_get_Indices("NRS", "Zooplankton") %>%
dplyr::filter(Parameters == "Biomass_mgm3") %>%
pr_model_data()
pr_plot_Trends(df, Trend = "Month")
#> Warning: Removed 1 row containing non-finite outside the scale range (`stat_smooth()`).
#> Warning: Removed 3 rows containing missing values or values outside the scale range
#> (`geom_point()`).
pr_plot_Trends(df, Trend = "Year")
#> Warning: Removed 8 rows containing non-finite outside the scale range (`stat_smooth()`).
#> Warning: Removed 9 rows containing missing values or values outside the scale range
#> (`geom_point()`).
pr_plot_Trends(df, Trend = "Raw")
#> Warning: Removed 53 rows containing non-finite outside the scale range
#> (`stat_smooth()`).
#> Warning: Removed 55 rows containing missing values or values outside the scale range
#> (`geom_point()`).