planktonr is an R package that facilitates the download, analysis, and visualisation of phytoplankton and zooplankton data. The package primarily focuses on plankton data from the Australian Ocean Data Network (AODN) collected by the Integrated Marine Observing System (IMOS), including:

  • National Reference Stations (NRS) - Coastal monitoring stations with monthly sampling
  • Continuous Plankton Recorder (CPR) - Ship-based transect sampling across ocean basins
  • Southern Ocean Time Series (SOTS) - Deep ocean mooring south of Tasmania

The package provides access to phytoplankton, zooplankton, larval fish, and biogeochemical data, along with tools for trend analysis, biodiversity assessment, and data visualisation.

Installation

The package is under active development. You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("PlanktonTeam/planktonr")

Some optional features require additional packages:

# For satellite data access
install.packages("thredds")

# For parallel processing (speeds up large data downloads)
install.packages(c("future", "furrr"))

# For community analysis functions
install.packages("vegan")

Quick Start

library(planktonr)
library(dplyr)
library(ggplot2)

# Get zooplankton biomass from NRS stations
df <- pr_get_Indices("NRS", "Zooplankton") %>%
  filter(Parameters == "Biomass_mgm3", 
         StationCode %in% c("MAI", "PHB"))

# Plot time series
pr_plot_TimeSeries(df, trans = "log10")

# Examine long-term trends
pr_plot_Trends(df, Trend = "Raw", method = "lm", trans = "log10")

# Look at seasonal patterns
pr_plot_Trends(df, Trend = "Month", method = "loess", trans = "log10")

Key Features

Data Access

Visualisation

Analysis

Learn More

See the package vignettes for detailed examples: * vignette("planktonr") - Overview and sampling frequency maps * vignette("EssentialOceanVariables") - EOV analysis and reporting * vignette("Phytoplankton") - Phytoplankton data analysis examples * vignette("Zooplankton") - Zooplankton data analysis examples * vignette("Biogeochemistry") - Nutrient and pigment data * vignette("LarvalFish") - Larval fish distribution data

Acknowledgements

This package accesses data from the Integrated Marine Observing System (IMOS). IMOS is enabled by the National Collaborative Research Infrastructure Strategy (NCRIS) and is supported by the Australian Government.

Thanks to the Integration and Application Network (ian.umces.edu/media-library) for the plankton symbols used in the planktonr hex sticker.