%>% {gmailr} | R Documentation |
Like dplyr and ggvis gmailr also uses the pipe function, \%>\%
to turn
function composition into a series of imperative statements.
lhs %>% rhs
lhs , rhs |
A visualisation and a function to apply to it |
# Instead of
gm_to(gm_mime(), 'someone@somewhere.com')
# you can write
gm_mime() %>% gm_to('someone@somewhere.com')