CiscoTL {FSAdata} | R Documentation |
Lengths, weights, and sex for Cisco (Coregonus artedii) from Trout Lake, WI, 1981-2006. Fish were collected with a variety of gears.
A data frame of 8594 observations on the following 8 variables:
TR
=Trout Lake)CISCO
)F
=Female, I
=Immature, M
=Male)Was (is?) available for download from http://www.limnology.wisc.edu/.
data(CiscoTL) str(CiscoTL) head(CiscoTL) op <- par(mfrow=c(2,2),pch=19) plot(weight~length,data=CiscoTL,subset=sex=="F",main="Female") plot(weight~length,data=CiscoTL,subset=sex=="M",main="Male") plot(weight~length,data=CiscoTL,subset=sex=="I",main="Immature") par(op)