Learn R Programming

FSAdata (version 0.3.3)

WhiteGrunt2: Ages, lengths, and sexes of White Grunt.

Description

Ages, lengths, and sexes of White Grunt (Haemulon plumierii) collected from the central coast of Brazil

Arguments

Format

A data frame with 465 observations on the following 3 variables.
age
Age (from otoliths to the nearest 0.1 years)
tl
Total length (mm)
sex
Sex (male and female)

Source

From (approximately) Figure 6 of Araujo, J.N. and A.S. Martins. 2007. Age, growth and mortality of white grunt (Haemulon plumierii) from the central coast of Brazil. Scientia Marina 71:793-800.

Topic(s)

  • Growth
  • von Bertalanffy

Examples

Run this code
data(WhiteGrunt2)
str(WhiteGrunt2)
head(WhiteGrunt2)
op <- par(mfrow=c(1,2),pch=19)
plot(tl~age,data=WhiteGrunt2,subset=sex=="female",main="Female")
plot(tl~age,data=WhiteGrunt2,subset=sex=="male",main="Male")
par(op)

Run the code above in your browser using DataLab