Learn R Programming

FSAdata (version 0.3.3)

WalleyePS: Ages of Walleye assigned from otoliths, scales, and spines.

Description

Age of Pymatuning Sanctuary (PA) Walleye (Sander vitreus) assessed from three calcified structures -- sectioned otoliths, sectioned dorsal spines, and scale impressions.

Arguments

Format

A data frame with 61 observations on the following 4 variables:
otolith
Age (years) assigned from broken, ground, and polished otolith sections
spine
Age (years) assigned from dorsal spine sections
scale
Age (years) assigned from scale impressions
sex
Sex of fish (female and male)

Source

From Figure 2 in Kocovsky, P.M., and R.M. Carline. 2000. A comparison of methods for estimating ages of unexploited walleyes. North American Journal of Fisheries Management 20:1044-1048.

Topic(s)

  • Age Comparison
  • Age Precision
  • Age Bias
  • Ageing Error

Examples

Run this code
data(WalleyePS)
str(WalleyePS)
head(WalleyePS)
op <- par(mfrow=c(3,2),pch=19)
plot(scale~otolith,data=WalleyePS,subset=sex=="female",main="Female")
plot(scale~otolith,data=WalleyePS,subset=sex=="male",main="Male")
plot(scale~spine,data=WalleyePS,subset=sex=="female",main="Female")
plot(scale~spine,data=WalleyePS,subset=sex=="male",main="Male")
plot(spine~otolith,data=WalleyePS,subset=sex=="female",main="Female")
plot(spine~otolith,data=WalleyePS,subset=sex=="male",main="Male")
par(op)

Run the code above in your browser using DataLab