Biological data for Slimy Sculpin from the Arctic LTER (AK).
Source:R/SculpinALTER.R
SculpinALTER.Rd
Biological data (length, weight, and age) for Slimy Sculpin (Cottus cognatus) sampled from Lake S-6 of the Arctic Long Term Ecological Research location.
Format
A data frame of 117 observations on the following 3 variables:
- w
Weight (nearest 0.1 g) at capture
- tl
Total length (nearest mm) at capture
- age
Age (completed growing seasons from otoliths) at capture
Source
Obtained from the Arctic LTER site. CSV file
Details
Slimy Sculpin were captured from Lake S-6 during the summers of 1988 and 1989. Sculpins were captured using canning jars with acetate funnels inserted in them (similar in design to some minnow traps). The sculpin traps were set by raft and placed on the bottom of the lake in a specific habitat (inshore, rocky, rock-mud interface, and mud bottom). (Roughly) every three days the traps were retrieved and the sculpins, if any, were removed.The ages of the fish were determined by counting the rings in their otoliths.
Examples
data(SculpinALTER)
str(SculpinALTER)
#> 'data.frame': 117 obs. of 3 variables:
#> $ w : num 0.9 1.15 1.5 1.25 1.35 1.95 2.3 0.9 0.4 0.3 ...
#> $ tl : int 52 53 58 57 56 62 65 49 38 33 ...
#> $ age: int 2 2 2 2 2 3 4 2 1 1 ...
head(SculpinALTER)
#> w tl age
#> 1 0.90 52 2
#> 2 1.15 53 2
#> 3 1.50 58 2
#> 4 1.25 57 2
#> 5 1.35 56 2
#> 6 1.95 62 3
op <- par(mfrow=c(2,2),pch=19)
hist(SculpinALTER$tl,main="")
hist(SculpinALTER$age,main="")
plot(w~tl,data=SculpinALTER)
plot(tl~age,data=SculpinALTER)
par(op)