Learn R Programming

FSAdata (version 0.4.1)

TroutBR: Ages and lengths of migratory Brown and Rainbow Trout.

Description

Total lengths (inches) and ages (from scales) of Brown Trout (Salmo trutta) and Rainbow Trout (Oncorhynchus mykiss) migrating upstream on the Bois Brule River, WI in 1978 and 1979.

Arguments

Format

A data frame with 851 observations on the following 3 variables:

tl

Measured total length (inches).

age

Assigned age (from scales).

species

Species (Brown and Rainbow).

Topic(s)

  • Growth

  • von Bertalanffy

Examples

Run this code
data(TroutBR)
str(TroutBR)
head(TroutBR)
op <- par(mfrow=c(1,2),pch=19)
plot(tl~age,data=TroutBR,subset=species=="Brown",main="Brown Trout")
plot(tl~age,data=TroutBR,subset=species=="Rainbow",main="Rainbow Trout")
par(op)

Run the code above in your browser using DataLab