Learn R Programming

FSAdata (version 0.3.3)

PikeWindermere: Stock and recruitment data for Northern Pike from Lake Windermere, 1944-1981.

Description

Stock and recruitment data for Northern Pike (Esox lucius) from Lake Windermere, 1944-1981.

Arguments

Format

A data frame of 75 observations on the following two variables:
year
Year
stock
Female biomass (kg)
recruits
Number at age-2
basin
Basin of Windermere (North or South)
tdd14
Temperature degree-days over 14C

Source

From table 3 in Kipling, C. 1983. Changes in the population of pike (Esox lucius) in Windermere from 1944 to 1981. Journal of Animal Ecology 52:989-999.

Topic(s)

  • Stock-Recruit
  • Recruitment

Examples

Run this code
data(PikeWindermere)
str(PikeWindermere)
head(PikeWindermere)
op <- par(mfrow=c(2,2),pch=19)
plot(recruits~year,data=PikeWindermere,subset=basin=="North",main="North")
plot(recruits~stock,data=PikeWindermere,subset=basin=="North",main="North")
plot(recruits~year,data=PikeWindermere,subset=basin=="South",main="South")
plot(recruits~stock,data=PikeWindermere,subset=basin=="South",main="South")
par(op)


Run the code above in your browser using DataLab