between: Classify values into groups based on which numbers they're...

Description Usage Arguments Value See Also Examples

Description

Classify values into groups based on which numbers they're between. quantile.cutpoints creates a data.frame of quantiles for feeding into e.g. categorize()

Usage

1
2
3
4
5
  between(vec, cutpoints)

  bin(vec, n = 10)

  quantile_cutpoints(vec, probs)

Arguments

vec

Numeric vector to classify

cutpoints

Vector listing what values the grouping should be done on. Should include the max and the min in this list as well.

n

Number of groups to bin into

probs

Probabilities at which to create cutpoints

Value

Vector of length(vec) indicating which group each element is in (for between). Or vector of length(vec) indicating the lower bound of the group that it's in.

See Also

categorize

Examples

1
2
3
test <- runif(100)
between(test,c(0,.1,.5,.9,1))
bin(test,n=5)

gsk3/taRifx documentation built on May 17, 2019, 8:55 a.m.