KingCrabAK: Stock and recruitment data for Red King Crab in Alaska, 1960-2004.
Description
Stock and recruitment data for Red King Crab (Paralithodes camtschaticus) from the northern Gulf of Alaska around Kodiak Island by brood year, 1960-2004.
Arguments
Format
A data frame of 44 observations on the following 3 variables:
year
Brood year (1960-2004)
recruits
abundance (thousands) of male recruits (>=125 mm and <145 mm)
adults
abundance (thousands) legal (>=145 mm carapace length) males
# NOT RUN {data(KingCrabAK)
str(KingCrabAK)
head(KingCrabAK)
op <- par(mfrow=c(1,2),pch=19)
plot(recruits~year,data=KingCrabAK,type="l")
plot(recruits~adults,data=KingCrabAK)
par(op)
# }