StripedBass3 | R Documentation |
As many as 10 fish per 1-inch total length intervals from the StripedBass2
data frame 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.
A data frame of 1201 observations on the following 2 variables:
Measured total lengths (in inches).
Ages assigned from examination of otoliths.
Age-Length Key
StripedBass2
.
data(StripedBass3)
str(StripedBass3)
head(StripedBass3)
## Extract the aged sample
sb.aged <- subset(StripedBass3,!is.na(age))
str(sb.aged)
## Extract the length sample
sb.length <- subset(StripedBass3,is.na(age))
str(sb.length)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.