Learn R Programming

metatools (version 0.2.0)

create_subgrps: Create Subgroups

Description

Create Subgroups

Usage

create_subgrps(ref_vec, grp_defs, grp_labs = NULL)

Value

Character vector of the values in the subgroups

Arguments

ref_vec

Vector of numeric values

grp_defs

Vector of strings with groupings defined. Format must be either: <00, >=00, 00-00, or 00-<00

grp_labs

Vector of strings with labels defined. The labels correspond to the associated grp_defs. i.e., "12-17" may translate to "12-17 years". If no grp_labs specified then grp_defs will be used.

Examples

Run this code
create_subgrps(c(1:10), c("<2", "2-5", ">5"))
create_subgrps(c(1:10), c("<=2", ">2-5", ">5"))
create_subgrps(c(1:10), c("<2", "2-<5", ">=5"))
create_subgrps(c(1:10), c("<2", "2-<5", ">=5"), c("<2 years", "2-5 years", ">=5 years"))

Run the code above in your browser using DataLab