mapValues: Map values from One Vector to Another

View source: R/mapValues.R

mapValuesR Documentation

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.

Examples

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


cannin/paxtoolsr documentation built on Feb. 2, 2023, 11:44 a.m.