InchLake1 {FSAdata} | R Documentation |
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.
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)
Topic(s)
Length Frequency
PSD
Size Structure
Source
Derek H. Ogle, personal collection. CSV file
See Also
See InchLake2
for a subsample that include weights.
Examples
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")
[Package FSAdata version 0.4.1 Index]