penguin.data | R Documentation |
Eudyptula minor
The penguin.data
data frame has 2244 rows and 11 columns of records of
the measured masses for little penguin chicks between 13 and 74
days of age collected at Philip Island, Victoria, Australia in 2000 and 2002
(see Chiaradia & Nisbet 2006).
penguin.data
This object of class c("nfnGroupedData", "nfGroupedData",
"groupedData", "data.frame")
containing the following columns:
Three character factor for the site (only one site in dataset).
A factor specifying the year of measurement.
an ordered factor indicating unique id of each individual: the union of the laying date of the nest relative to the colony and the band combination
A factor specifying levels of year for different sites (only one site in dataset).
a numeric vector of chick masses (g).
a numeric vector of chick ages (days).
a numeric vector of first egg-laying date of the nest(days), relative to the mean laying date for all nests in that year.
A factor of unique codes that identify each nest.
A factor of hatching order for each chick (A = first hatched, B = second hatched).
A factor of codes for fate of each chick (F = fledged; only fledged chicks included).
A factor of size of clutch/brood that each chick comes from (either 1- or 2-chick brood).
Data were collected as outlined in Chiaradia & Nisbet (2006). Penguin chicks are generally considered to exhibit a double-Gompertz growth form.Please contact Andre Chiaradia (a.chiaradia@penguins.org.au) for use in collaborations.
Chiaradia, A. & Nisbet, I.C.T. (2006)
Plasticity in parental provisioning and chick growth in Little Penguins Eudyptula minor
in years of high and low breeding success. Ardea, 94, 257-270.
require(stats); require(graphics)
#view data
penguin.data
modpar(penguin.data$ckage, penguin.data$weight, pn.options = "myoptions")
plot(weight ~ ckage, data = penguin.data, subset = bandid == penguin.data$bandid[1],
xlab = "Chick age (day)", las = 1,
ylab = "Chick mass (g)",
main = "penguin.data and fitted curve (Chick #307 only)")
fm1 <- nls(weight ~ SSposnegRichards(ckage,Asym=Asym,K=K,Infl=Infl, RAsym=RAsym,
modno=31, pn.options= "myoptions"),
data = penguin.data, subset = bandid == penguin.data$bandid[1])
ckage <- seq(0, 74, length.out = 101)
lines(ckage, predict(fm1, list(ckage = ckage)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.