Learn R Programming

fishstat (version 2025.1.0.0)

aquaculture: Global Aquaculture Production

Description

Aquaculture production quantity by species, area, country, and aquatic environment for the years 1950-2023, compiled and published by FAO (2025).

Usage

aquaculture

Arguments

Format

Data frame containing eight columns:

speciesspecies code
yearyear
areaarea code
countrycountry code
valuequantity in tonnes
measuremeasure code
statusstatus code
environmentenvironment code

Details

This data frame contains the full set of 104,598 data records from the FishStat Aquaculture Quantity 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(aquaculture)

# Add species columns
aqua <- merge(aquaculture, species)

# Top 10 aquaculture species in 2023, production in tonnes
x <- aggregate(value~species_name, aqua, sum, subset=year==2023)
x$value <- round(x$value)
head(x[order(-x$value),], 10)

# Total aquaculture production by major taxa since 1950, in million tonnes
aggregate(value~tolower(major), aqua, function(x) round(sum(x/1e6)))

# Annual aquaculture production of all animals
x <- aggregate(value~year, aqua, sum, subset=yearbook != "Aquatic plants")
plot(value/1e6~year, x, ylab="million tonnes", type="l")
title(main="Aquaculture production: All animals")

Run the code above in your browser using DataLab