Skip to content

Instantly share code, notes, and snippets.

@alandipert
Last active August 29, 2018 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alandipert/bda93c9d226fa95bbacd131ed2408ea9 to your computer and use it in GitHub Desktop.
Save alandipert/bda93c9d226fa95bbacd131ed2408ea9 to your computer and use it in GitHub Desktop.
FizzBuzz with dplyr::case_when
for (i in 1:100) print(
dplyr::case_when(
i %% 3 == 0 ~ "Fizz",
i %% 5 == 0 ~ "Buzz",
TRUE ~ toString(i)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment