
September 22, 2016
as.data.frame(read.csv("file.csv"))
read.csv("file.csv") %>% as.data.frame()
%>%
.x %>% f(y) # is the same as: f(x,y) gapminder %>% group_by(continent, country) %>% nest() # Same as: nest(group_by(gapminder,continent,country))
Your code is how you communicate with others (especially your future self).
If it doesn't make any difference to the computer, you might as well write your code in a way that makes it easier for you to think about it and find errors.