RuffeSLRH92 {FSAdata} | R Documentation |
Biological data for Ruffe (Gymnocephalus cernuus) captured in the St. Louis River, Lake Superior in 1992.
A data frame of 738 observations on the following 11 variables:
female
, male
, or unknown
)developing
, immature
, mature
, nearly.ripe
, nearly.spent
, recovering
, ripe
, running
, spent
, unknown
, or yoy
)personal collection by the United States Geological Survey, Lake Superior Biological Station, Ashland, WI.
data(RuffeSLRH92) str(RuffeSLRH92) head(RuffeSLRH92) op <- par(mfrow=c(2,2),pch=19) hist(RuffeSLRH92$length,main="") hist(RuffeSLRH92$age,main="") plot(weight~length,data=RuffeSLRH92) plot(length~age,data=RuffeSLRH92) par(op) xtabs(~age,data=RuffeSLRH92) xtabs(~sex,data=RuffeSLRH92) tmp <- c("yoy","immature","developing","mature","nearly.ripe","ripe", "running","nearly.spent","spent","recovering","unknown") RuffeSLRH92$maturity <- ordered(RuffeSLRH92$maturity,levels=tmp) xtabs(~maturity,data=RuffeSLRH92) xtabs(~maturity+month+sex,data=RuffeSLRH92)