Last chance! 50% off unlimited learning
Sale ends in
riley
contains three entries.
riley$fig21points
is a list representing the data shown in
Riley's Figure 21. Resulting from digitization of his graph, this is a
list containingday
(day in year) andP
(phytoplankton
concentraiton, in grams of Carbon per square meter.riley$fig21curve
is a function representing Riley's
numerical solution of the differential equations he proposes as a model
of phytoplankton growth.
prediction, shown in his Figure 21. theoretical curve that Riley
calculated, numerically. (SeeDEparameters
is a list containing data about twice per
month, in elementsday
for the day of the year,Ph
for
phytoplankton growth rate,R
for phytoplankton respiration rate,
andG
for the rate at which zooplankton graze on phytoplankton.
The rates are in inverse days.data(riley)
riley$fig21points
is based on manual manual digitization of
Riley's Figure 21. riley$fig21curve
are based on manual
digitization of Riley's theoretical curve in the same figure, fitted to a
spline with splinefun
, which yields a function that can be
used to predict at any time. riley$DEparameters
was transcribed from
Riley's appendix.Gordon A. Riley, 1946. Factors controlling phytoplankton populations on Georges Bank. Journal of Marine Research, 6(1): 54-73.
library(oce)
data(riley)
plot(riley$fig21points$day, riley$fig21points$P, xlab="Day of Year", ylab="Phytoplankton [gC/m^2]")
day <- seq(0, 365, 5)
lines(day, riley$fig21curve(day))
Run the code above in your browser using DataLab