knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "figure/",
  fig.height = 1
)

Pollen - tools for working with aerobiological data

R-CMD-check codecov CRAN version CRAN RStudio mirror downloads

<!--[![Coverage Status](https://img.shields.io/codecov/c/github/hadley/lubridate/master.svg)](https://codecov.io/github/hadley/lubridate?branch=master)-->

The pollen package is a set of functions for working with aerobiological data. It takes care of some of the most widely use aerobiological calculations, including determination of pollen season limits, replacement of outliers (Kasprzyk and Walanus (2014)), and calculation of growing degree days (Baskerville and Emin (1969)).

Installation

Get the released version from CRAN:

install.packages("pollen")

Or the development version from github:

remotes::install_github("nowosad/pollen")

Examples

library(pollen)
data("pollen_count")
head(pollen_count)

Pollen season calculation

df <- subset(pollen_count, site == "Oz")
pollen_season(value = df$birch, date = df$date, method = "95")

More examples of pollen seasons' calculations can be found in the first package vignette.

Growing degree days (GDD) calculation

Examples of Growing degree days (GDD) calculations can be found in the second package vignette.

Citation

To cite the pollen package in publications, please use:

Nowosad, Jakub (2018). pollen: Analysis of Aerobiological Data. R package version 0.71.0. https://github.com/Nowosad/pollen

LaTeX/BibTeX version can be obtained with:

library(pollen)
citation("pollen")

Contributions

Feel free to submit issues and enhancement requests.

References



Nowosad/pollen documentation built on Feb. 1, 2023, 12:51 a.m.