Learn R Programming

paxtoolsr (version 1.6.3)

mapValues: Map values from One Vector to Another

Description

Map values from One Vector to Another

Usage

mapValues(data, oldValue, newValue)

Arguments

data
a vector of strings where values will be replaced
oldValue
a vector that matches values in the data vector
newValue
a vector of new values that will replace the old values

Value

  • return the vector with the mapped values. If there was no corresponding entry then replace it with an NA.

concept

paxtoolsr

Examples

Run this code
data <- c("A", "B", "C", "X", "Y", "Z") 
oldValue <- LETTERS[1:20]
newValue <- letters[1:20]
results <- mapValues(data, oldValue, newValue)

Run the code above in your browser using DataLab