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
| # Many RStudio engineers were using this font | |
| # https://github.com/tonsky/FiraCode | |
| a >= 10 | |
| a != b | |
| a <- 4 | |
| a == 10 | |
| a <= 10 |
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
| # Check this out; NSE functional assignment | |
| # Works for functions that take a single `x` argument | |
| # and linear pipe only downstream | |
| myfun <- . %>% | |
| sqrt() %>% | |
| as.character() %>% | |
| paste("is the coolest number ever!") | |
| myfun(9) |
NewerOlder