Last data update: 2014.03.03

R: Pipe statements
%>%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')

Results