recode: Recode the value of a vector

View source: R/recode.r

recodeR Documentation

Recode the value of a vector

Description

Recode the value of a vector or matrix.

Usage

recode(x, from, to)

Arguments

x

a vector or matrix

from

original value of x

to

new value of x

Value

recoded x

Author(s)

TszKin Julian Chan ctszkin@gmail.com

Examples

x=rep(1:5,each=2)
recode(x,from=1:5,to=5:1)
recode(x,from=1:5,to=11:15)

Jmisc documentation built on June 22, 2022, 9:09 a.m.

Related to recode in Jmisc...