Learn R Programming

metatools (version 0.1.6)

create_subgrps: Create Subgroups

Description

Create Subgroups

Usage

create_subgrps(ref_vec, grp_defs)

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

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"))

Run the code above in your browser using DataLab