Skip to content

Instantly share code, notes, and snippets.

@flodel
Last active December 10, 2015 17:58
Show Gist options
  • Save flodel/4471002 to your computer and use it in GitHub Desktop.
Save flodel/4471002 to your computer and use it in GitHub Desktop.
basket <- c("apple", "banana", "lemon", "orange",
"orange", "pear", "cherry")
ifelse(basket == "banana", "apple",
ifelse(basket == "orange", "pineapple",
basket)) # or "fig"))
# [1] "apple" "apple" "lemon" "pineapple"
# [4] "pineapple" "pear" "cherry"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment