tadaatoolbox (version 0.16.0)

generate_recodes: Convenience functions for interval recodes

Description

Get recode assigments for even intervals of discrete numeric values compatible with car::recode.

Usage

generate_recodes(from, to, width = 5)

Arguments

from, to

A numeric value for the beginning and the end of the interval.

width

The width of the interval, e.g. 5 (default) for intervals 0-5.

Value

A character vector of recode assignments compatible with car::recode.

Examples

Run this code
# NOT RUN {
x       <- round(runif(100, 0, 100), 0)
recodes <- generate_recodes(0, 100, 10)

library(car)
recode(x, recodes = recodes)
# }

Run the code above in your browser using DataLab