Learn R Programming

FSAdata (version 0.4.1)

LakeTroutALTER: Biological data for Lake Trout from the Arctic LTER (AK).

Description

Biological data (lengths, weight, age, and sex) of Lake Trout (Salvelinus namaycush) sampled from Lake NE12 of the Arctic Long Term Ecological Research location.

Arguments

Format

A data frame of 86 observations on the following 6 variables:

id

A unique identification number.

tl

Total Length (nearest mm) at capture.

fl

Fork Length (nearest mm) at capture.

sl

Standard Length (nearest mm) at capture.

w

Weight (nearest g) at capture.

otorad

Total otolith radius (mm) at capture.

age

Age (completed growing seasons) at capture.

sex

Sex of the fish (F=female and M=male).

Topic(s)

  • Length Frequency

  • Weight-Length

  • Length Conversion

  • Growth

  • von Bertalanffy

  • Size Structure

Details

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:

  1. Only Lake Trout were kept in the data file.

  2. All unknown sex fish were removed.

  3. Fish with missing data (length, weight,age, or sex) were removed.

  4. Decimals were removed from the ages.

  5. The unique IDs for fish from 1989 were changed to start at 500.

  6. The weight of fish number 509 was changed from 100 to 1100.

Examples

Run this code
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)

Run the code above in your browser using DataLab