Learn R Programming

popbio (version 2.8)

woodpecker: Survirvorship data for adult and juvenile Acorn Woodpeckers

Description

Number of juvenile and adult Acorn Woodpeckers and survival in the Water Canyon, New Mexico population, reconstructed from Stacey and Taper (1992).

Usage

woodpecker

Arguments

Format

A data frame with 18 rows and 4 columns

rate

Adult or juvenile stage

year

Year

start

Total number of starting individuals

surv

Number surviving to spring

References

Akcakaya, H. R. 2002. Estimating the variance of survival rates and fecundities. Animal Conservation 5: 333-336. Kendall, B. E. 1998. Estimating the magnitude of environmental stochasticity in survivorship data. Ecological Applications 8(1): 184-193.

See Also

Kendall and varEst

Examples

Run this code
woodpecker
x <- subset(woodpecker, rate == "adult")
plot(x$year, x$start,
  type = "o", pch = 16,
  ylab = "Number of adults", xlab = "Year",
  main = "Acorn Woodpeckers in Water Canyon"
)
## stage-specific survival rate
x <- aggregate(
  list(Nstart = woodpecker$start, Nsurv = woodpecker$surv),
  list(stage = woodpecker$rate), sum
)
x$survival <- x[, 3] / x[, 2]
x

Run the code above in your browser using DataLab