source: Sources

sourceR Documentation

Sources

Description

Sources of aquaculture and capture production, defined by FAO (2025).

Usage

source

Format

Data frame containing two columns:

source source code
source_name source name

Details

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

Source

FAO (2025). Global Production. Fisheries and Aquaculture Division. Rome.

https://www.fao.org/fishery/en/collection/global_production

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

source

# Analyze production measured in tonnes
prod <- production[production$measure == "Q_tlw" & production$value > 0,]
prod <- merge(prod, source)

# Production by source in 2023, in million tonnes
x <- aggregate(value~source_name, prod, sum, subset=year==2023)
transform(x, value=round(value/1e6))

fishstat documentation built on April 11, 2025, 5:50 p.m.