Learn R Programming

FSAdata (version 0.4.1)

ShrimpGuam: Catch and effort data for Deepwater Caridean Shrimp.

Description

Catch and effort data for Deepwater Caridean Shrimp (Heterocarpus laevigatus) from 15 days in 1984 from near Alamagan Islan in the Marian Archipelago (near Guam).

Arguments

Format

A data frame with 15 observations on the following 4 variables.

day

Day of the catch. Day 9 is 9-Jan-1984.

standard

Catch (kg) of of Shrimp in the standard traps.

pyramid

Catch (kg) of of Shrimp in the pyramid traps.

effort

Total effort (trap-nights) for the standard traps.

Topic(s)

  • Population size

  • Abundance

  • Depletion methods

  • Leslie method

  • DeLury method

  • Catchability

Details

Catch (kg) and effort (trap-nights) of Deepwater Caridean Shrimp (Heterocarpus laevigatus) from 15 days in 1984 from near Alamagan Islan in the Marian Archipelago (near Guam). The data start on 9-Jan-1984. Catches were recorded separately for standard traps and in pyramid traps.

The original authors estimated populations size using the Leslie method with the cumulative catch from the combined catch in the standard and pyramid traps, but with a CPE computed from just the catch in standard traps.

Examples

Run this code
data(ShrimpGuam)
str(ShrimpGuam)
head(ShrimpGuam)

## Computations by the original authors
# CPE for just the standard traps
ShrimpGuam$CPE <- ShrimpGuam$standard/ShrimpGuam$effort
# Total catch in both traps
ShrimpGuam$total <- ShrimpGuam$standard+ShrimpGuam$pyramid
# Cumulative catch in both traps (with the Ricker modification)
ShrimpGuam$cumCatch <- cumsum(ShrimpGuam$total)-ShrimpGuam$total/2

Run the code above in your browser using DataLab