%>% {gmailr}R Documentation

Pipe statements

Description

Like dplyr and ggvis gmailr also uses the pipe function, \%>\% to turn function composition into a series of imperative statements.

Usage

lhs %>% rhs

Arguments

lhs, rhs

A visualisation and a function to apply to it

Examples

# Instead of
gm_to(gm_mime(), 'someone@somewhere.com')
# you can write
gm_mime() %>% gm_to('someone@somewhere.com')

[Package gmailr version 1.0.0 Index]