LakeTroutALTER {FSAdata} | R Documentation |
Biological data (lengths, weight, age, and sex) of Lake Trout (Salvelinus namaycush) sampled from Lake NE12 of the Arctic Long Term Ecological Research location.
A data frame of 86 observations on the following 6 variables:
F
=female and M
=male).
Lake trout were removed from Lake NE12 in the summers of 1986, 1988, and 1989 using five-panel experimental gill nets (mesh size of 0.75, 1, 1.5, 2, and 2.5 inches). Lengths, weights, and sex were recorded from the fish while otoliths, and if possible, stomachs and gonads were removed for future analysis. A check was performed on several otoliths by an independent colleague and prevents introduction of bias due to familiarity with the samples. The original file was “cleaned” in the following ways:
Was (does not appear to be available there now) from http://ecosystems.mbl.edu/ARC/lakes/fish/89mcne12.html. It seems like it should still be available from the Arctic LTER site at http://ecosystems.mbl.edu/ARC/lakes/fish/index.shtml.
data(LakeTroutALTER) str(LakeTroutALTER) head(LakeTroutALTER) op <- par(mfrow=c(2,2),pch=19) ## Four (of many possible) examples hist(LakeTroutALTER$tl,main="") plot(w~tl,data=LakeTroutALTER) plot(tl~fl,data=LakeTroutALTER) plot(tl~age,data=LakeTroutALTER) par(op)