Learn R Programming

FSAdata (version 0.4.1)

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)

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