LakeTroutALTER | 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:
A unique identification number.
Total Length (nearest mm) at capture.
Fork Length (nearest mm) at capture.
Standard Length (nearest mm) at capture.
Weight (nearest g) at capture.
Total otolith radius (mm) at capture.
Age (completed growing seasons) at capture.
Sex of the fish (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:
Only Lake Trout were kept in the data file.
All unknown sex fish were removed.
Fish with missing data (length, weight,age, or sex) were removed.
Decimals were removed from the ages.
The unique IDs for fish from 1989 were changed to start at 500.
The weight of fish number 509 was changed from 100 to 1100.
Length Frequency
Weight-Length
Length Conversion
Growth
von Bertalanffy
Size Structure
Obtained from the Arctic LTER site. CSV file
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.