Learn R Programming

FSAdata (version 0.3.3)

InchLake2: Lengths and weights for fish captured in Inch Lake

Description

Total lengths and weights for a subsample of fish captured in Inch Lake, WI in May, 2007 and May, 2008.

Arguments

Format

A data frame of 516 observations on the following 6 variables:
netID
A unique identifier for the sampling event
fishID
A unique identifier for the individual fish
species
Species name
length
Total length (inches to nearest 0.1)
weight
Wet weight (grams to nearest 0.1)
year
Year of capture

Source

Derek H. Ogle, personal collection

Topic(s)

  • Weight-Length
  • Condition
  • Length Frequency

See Also

See InchLake1 for the entire sample, but without weights.

Examples

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

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

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

Run the code above in your browser using DataLab