Skip to content

Instantly share code, notes, and snippets.

@lukereding
Created September 21, 2017 22:50
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 lukereding/93a5893cbb8088beb29a39c0d6b519f7 to your computer and use it in GitHub Desktop.
Save lukereding/93a5893cbb8088beb29a39c0d6b519f7 to your computer and use it in GitHub Desktop.
comments in pipes
data_frame(x=1:10) %>%
mutate(
# x2 = x*2,
x3 = x*3) %>%
filter(x>5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment