Created
September 21, 2017 22:50
-
-
Save lukereding/93a5893cbb8088beb29a39c0d6b519f7 to your computer and use it in GitHub Desktop.
comments in pipes
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
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