Learn R Programming

FSAdata (version 0.3.3)

InchLake1: Lengths for all fish captured in Inch Lake, WI, in two years

Description

Total lengths of all fish captured in Inch Lake, WI in May, 2007 and May, 2008.

Arguments

Format

A data frame of 4894 observations on the following 5 variables:
netID
A unique identifier for the sampling event
netType
gear used (angling, seine, miniWDNR fyke net, miniNC fyke net, regular fyke net)
year
year of capture
species
species name
length
total length (inches to nearest 0.1)

Source

Derek H. Ogle, personal collection

Topic(s)

  • Length Frequency
  • PSD
  • Size Structure

See Also

See InchLake2 for a subsample that include weights.

Examples

Run this code
data(InchLake1)
str(InchLake1)
head(InchLake1)

## Isolate just Bluegills
bg.il <- subset(InchLake1,species=="Bluegill")

## Isolate just largemouth bass from 2007
lmb7.il <- subset(InchLake1,species=="Largemouth Bass" & year==2007)

## Isolate all fish captured in seines
seine.il <- subset(InchLake1,netType=="seine")

Run the code above in your browser using DataLab