Learn R Programming

FSAdata (version 0.4.1)

LJCisco: Ages and lengths of Longjaw Cisco from two locations in Lake Michigan.

Description

Assigned age (by scales) and total length of Longjaw Cisco (Leucichthys alpenae) captured at two locations in Lake Michigan.

Arguments

Format

A data frame with 378 observations on the following 3 variables.

age

Assigned age (by scales).

tl

Measured total length (mm).

loc

Capture location (NE=northeast and S=south).

Topic(s)

  • Growth

  • von Bertalanffy

Examples

Run this code
data(LJCisco)
str(LJCisco)
head(LJCisco)
op <- par(mfrow=c(1,2))
plot(tl~age,data=LJCisco,subset=loc=="NE",main="northeast")
plot(tl~age,data=LJCisco,subset=loc=="S",main="south")
par(op)

Run the code above in your browser using DataLab