get_composite_regions: Get the area of each strata

View source: R/get-composite-regions.R

get_composite_regionsR Documentation

Get the area of each strata

Description

get_composite_regions allows you to obtain the dataframe defining the original composite regions for a given stratification type.

Usage

get_composite_regions(strata_type = NULL)

Arguments

strata_type

Stratification type to return the areas of

Value

Data frame with at least the following variables:

region

Name of the stratum/region

area_sq_km

Area of the stratum/region in square kilometres

Examples


# Obtain the potential composite regions for each of the 5 stratification types
# Most useful if the user wishes to create an set of custom composite regions
#
# USGS BBS
st_comp_regions <- get_composite_regions(strata_type = "bbs_usgs")
# create new column "Great_Plains"
gpall <- rep("Outside",nrow(st_comp_regions))
gp <- which(st_comp_regions$bcr %in% c(11,17,18,19))
gpall[gp] <- "Inside"
st_comp_regions$Great_Plains <- gpall
# st_comp_regions can now be used as the dataframe input to the argument alt_region_names
# in generate_regional_indices,
# with "Great_Plains" as the value for the argument region


# CWS BBS
st_comp_regions <- get_composite_regions(strata_type = "bbs_cws")

# BCR
st_comp_regions <- get_composite_regions(strata_type = "bcr")

# State/Province/Territory
st_comp_regions <- get_composite_regions(strata_type = "state")

# Degree block
st_comp_regions <- get_composite_regions(strata_type = "latlong")



bbsBayes documentation built on March 7, 2023, 6:33 p.m.