Learn R Programming

FSAdata (version 0.4.1)

FHCatfishATL: Catch-at-age of Flathead Catfish from three Atlantic rivers.

Description

Catch-at-age of Flathead Catfish (Pylodictis olivaris) from three populations of Atlantic rivers -- Lumber River, Northeast Cape Fear River (NCF), and Neuse River.

Arguments

Format

A data frame of 44 observations on the following 3 variables:

river

Collection river (Lumber, NCF, and Neuse).

age

Age (yrs) assessed by otolith.

number

Number of captured fish.

Topic(s)

  • Mortality

  • Catch curve

Examples

Run this code
data(FHCatfishATL)
str(FHCatfishATL)
head(FHCatfishATL)
op <- par(mfrow=c(2,2),pch=19)
plot(log(number)~age,data=FHCatfishATL,subset=river=="Lumber",main="Lumber")
plot(log(number)~age,data=FHCatfishATL,subset=river=="NCF",main="NCF")
plot(log(number)~age,data=FHCatfishATL,subset=river=="Neuse",main="Neuse")
par(op)

Run the code above in your browser using DataLab