Skip to content

Instantly share code, notes, and snippets.

@verajosemanuel
Last active November 14, 2017 09:39
Show Gist options
  • Save verajosemanuel/35d2d3b219c9d249b394a0725dd2330a to your computer and use it in GitHub Desktop.
Save verajosemanuel/35d2d3b219c9d249b394a0725dd2330a to your computer and use it in GitHub Desktop.
#lookup #tables in #R #wrangling
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