Learn R Programming

fishstat (version 2025.1.0.0)

area: Areas

Description

Major inland and marine fishing areas, defined by FAO (2025).

Usage

area

Arguments

Format

Data frame containing five columns:

areaarea code
area_namearea name
inlandmarineinland or marine
faregionnorthern, central, or southern (marine fishing areas)
oceanAtlantic, Indian, Pacific, or Southern Ocean (marine fishing areas)

Details

This data frame contains the full set of 29 data records from the FishStat Water Area Groups 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(area)

# Inland waters and marine areas
area[area$inlandmarine == "Inland waters", c("area", "area_name")]
area[area$inlandmarine == "Marine areas", c("area", "area_name")]

# Check if any area has zero production
nonzero <- unique(production$area[production$value > 0])
print(area[!(area$area %in% nonzero),], row.names=FALSE)

# Check which species groups are recorded in areas 98 and 99
species_98_99 <- unique(production$species[production$area %in% 98:99])
cbind(unique(species$isscaap[species$species %in% species_98_99]))

# Marine fishing areas in northern, central, and southern regions
area$area[area$faregion == "Northern regions"]
area$area[area$faregion == "Central regions"]
area$area[area$faregion == "Southern regions"]

# Examine one area
print.simple.list(area[area$area == 71,])

Run the code above in your browser using DataLab