Skip to contents

Assign Moose Stratification categories Assign each block a high, medium or low category based on assigned values or quartile.

Usage

assign_categories(
  out_table,
  quartile = FALSE,
  low = 0.4,
  med = 0.7,
  high = 1,
  burn_strat = 0.5
)

Arguments

out_table

data frame of moose stratification values

quartile

TRUE or FALSE, if FALSE then categories will be based on low, med, high parameters

low

numeric value to assign the highest value of the low category, default is 0.4

med

numeric value to assign the highest value of the medium category, default is 0.7

high

numeric value to assign the highest value of the high category, default is 1

burn_strat

numeric value threshold above which block will be classes as "burn_strat", default is 0.5

Value

data table

Examples

if (FALSE) {
assign_categories(out_table, quartile = FALSE, low = 40, med = 70, high = 100)
}