Learn R Programming

FSAdata (version 0.4.1)

FHCatfish: Catch-at-age of Flathead Catfish from three southeastern rivers.

Description

Numbers of Flathead Catfish (Pylodictis olivaris) captured by electrofishing in three rivers -- Coosa River, AL; Ocmulgee River, GA; and Satilla River, GA.

Arguments

Format

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

river

Location of collection (Coosa, Ocmulgee, and Satilla)

age

Age (years) assigned from otolith

abundance

Number of captured fish with boat electrofishing

Topic(s)

  • Mortality

  • Catch curve

Examples

Run this code
data(FHCatfish)
str(FHCatfish)
head(FHCatfish)
op <- par(mfrow=c(2,2),pch=19)
plot(log(abundance)~age,data=FHCatfish,subset=river=="Coosa",main="Coosa")
plot(log(abundance)~age,data=FHCatfish,subset=river=="Ocmulgee",main="Ocmulgee")
plot(log(abundance)~age,data=FHCatfish,subset=river=="Satilla",main="Satilla")
par(op)

Run the code above in your browser using DataLab