TroutDietSL | R Documentation |
Size (standard length, total length, and weight) and diet data (volume of three main prey categories) for Bull Trout (Salvelinus confluentus) and Lake Trout (Salvelinus namaycush) from Swan Lake, Montana, a lake where Lake Trout just recently had become established.
A data frame with 470 observations on the following 2 variables.
A unique identification number for each fish.
A species code: BLT
=bull trout, LKT
=lake trout.
Standard length (mm). Only recorded for bull trout.
Total length (mm). Computed from equation in source for bull trout.
Weight (g)
Total volume (ml) of prey in the stomach.
Volume (ml) of Mysis diluviana in the stomach.
Volume (ml) of other invertebrates in the stomach.
Volume (ml) of fish in the stomach.
Number of dipterans in the stomach.
Number of Pisidium spp. in the stomach.
Length-Weigth
Diet Overlap
From the online supplement to Guy, C.S., T.E. McMahon, W.A. Fredenberg, C.J. Smith, D.W. Garfield, and B.S. Cox. 2011. Diet overlap of top-level predators in recent sympatry: Bull trout and nonnative lake trout. Journal of Fish and Wildlife Management 2:183-189.
data(TroutDietSL) str(TroutDietSL) head(TroutDietSL) # The authors added a percent volume for each diet item for each fish TroutDietSL$pvol.mysis <- TroutDietSL$vol.mysis/TroutDietSL$vol.ttl TroutDietSL$pvol.oi <- TroutDietSL$vol.oi/TroutDietSL$vol.ttl TroutDietSL$pvol.fish <- TroutDietSL$vol.fish/TroutDietSL$vol.ttl # add empty variable TroutDietSL$empty <- ifelse(TroutDietSL$vol.ttl==0,"YES","NO") head(TroutDietSL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.