Learn R Programming

FSAdata (version 0.4.1)

ShadCR: Ages of American Shad assigned from scales by three readers at two times.

Description

Ages of American Shad (Alosa sapidissima) assigned from scales by three readers at two times.

Arguments

Format

A data frame with 53 observations on the following 8 variables.

fishID

A unique fish identification number

trueAge

The true age of the fish

agerA1

Ages assigned by reader A at time 1

agerA2

Ages assigned by reader A at time 2

agerB1

Ages assigned by reader B at time 1

agerB2

Ages assigned by reader B at time 2

agerC1

Ages assigned by reader C at time 1

agerC2

Ages assigned by reader C at time 2

Topic(s)

  • Age Comparison

  • Age Precision

  • Age Bias

  • Ageing Error

Details

The true ages for fish in their sample were known because the Shad had been marked prior to being stocked. Additionally, 13 biologists twice (independently) estimated the age from scales for each fish. The known age of the fish (trueAge) and the age estimates from three of the 13 biologists are available in this data.frame. The estimated age variables are labeled with ager, a letter for the three biologists (A, B, or C) and a number for which time the scale was interpreted (1 or 2). Some biologists chose not to assign an age to some scales and, thus, those data are missing (shown as NA values).

Examples

Run this code
data(ShadCR)
str(ShadCR)
head(ShadCR)
op <- par(mfrow=c(2,2),pch=19)
plot(agerA1~agerA2,data=ShadCR)
plot(agerB1~agerB2,data=ShadCR)
plot(agerC1~agerC2,data=ShadCR)
plot(agerA1~agerB1,data=ShadCR)
par(op)

Run the code above in your browser using DataLab