Learn R Programming

fishstat (version 2025.1.0.0)

status: Status

Description

Status of data entries, defined by FAO (2025).

Usage

status

Arguments

Format

Data frame containing four columns:

statusstatus code
status_namestatus name
status_descriptionshort name
alternateunit multiplier

Details

This data frame contains the full set of 16 data records from the FishStat Symbols data table. Column names have been simplified to facilitate quick exploration and plotting in R.

See Also

aquaculture and capture data are also available in a combined production format.

area, country, environment, measure, source, species, and status are lookup tables.

fishstat-package gives an overview of the package.

Examples

Run this code
head(status, 3)

# Aquaculture data entries
# Percentage that have official status, estimated, and negligible
100 * proportions(table(aquaculture$status))

# Capture data entries
# Percentage that have official status, estimated, and negligible
100 * proportions(table(capture$status))

# Examine one status definition
print.simple.list(status[status$status=="N",])

Run the code above in your browser using DataLab