%>% {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
to(mime(), 'someone@somewhere.com')
# you can write
mime() %>% to('someone@somewhere.com')

[Package gmailr version 0.7.1 Index]