SpotVA2 {FSAdata} | R Documentation |
Ages (subsample) and lengths (all fish) for Spot.
Description
As many as 10 fish per 1-inch total length intervals from the SpotVA1
data frame in FSA were obtained for age assignment. The remaining fish in the file were only measured for length (i.e., the ages were deleted). This data file can be used to demonstrate the use of age-length keys.
Format
A data frame of 403 observations on the following 2 variables:
- tl
Measured total lengths (in inches)
- age
Ages assigned from examination of otoliths
Topic(s)
Age-Length Key
Source
From Table 1 in Chapter 8 (Spot) of the VMRC Final Report on Finfish Ageing, 2002 by the Center for Quantitative Fisheries Ecology at Old Dominion University. CSV file
See Also
SpotVA1
in FSA.
Examples
data(SpotVA2)
str(SpotVA2)
head(SpotVA2)
## Extract the aged sample
spot.aged <- subset(SpotVA2,!is.na(age))
str(spot.aged)
## Extract the length sample
spot.length <- subset(SpotVA2,is.na(age))
str(spot.length)
[Package FSAdata version 0.4.1 Index]