Last active
November 14, 2017 09:39
-
-
Save verajosemanuel/35d2d3b219c9d249b394a0725dd2330a to your computer and use it in GitHub Desktop.
#lookup #tables in #R #wrangling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x <- c("m", "f", "u", "f", "f", "m", "m") | |
lookup <- c(m = "Male", f = "Female", u = NA) | |
lookup[x] | |
unname(lookup[x]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment