Learn R Programming

ocedata (version 0.1.6)

riley: Riley's (1946) observation and theory of phytoplankton concentration

Description

Riley's (1946) observation and theory of phytoplankton concentration. The list riley contains three entries.

  • riley$fig21points is a data frame representing the data shown in Riley's Figure 21. Resulting from digitization of his graph, this is a list containing day (day in year) and P (phytoplankton concentration, in grams of Carbon per square meter.

  • riley$fig21curve is a data frame with columns named day and P, containing a digitized trace of the curve with which Riley illustrates his numerical solution of the differential equations for phytoplankton growth.

  • DEparameters is a list containing data about twice per month, in elements day for the day of the year, Ph for phytoplankton growth rate, R for phytoplankton respiration rate, and G for the rate at which zooplankton graze on phytoplankton. The rates are in inverse days.

This is used in Chapter 4 of [1].

Usage

data(riley)

Arguments

References

1. Dan Kelley, in preparation. Oceanographic Analysis with R. Springer Verlag.

2. Gordon A. Riley, 1946. Factors controlling phytoplankton populations on Georges Bank. Journal of Marine Research, 6(1): 54-73.

Examples

Run this code
# NOT RUN {
data(riley, package="ocedata")
plot(riley$fig21points$day, riley$fig21points$P, xlab="Day of Year", ylab="Phytoplankton [gC/m^2]")
lines(riley$fig21curve$day, riley$fig21curve$P)
# }

Run the code above in your browser using DataLab