pipe.Rd
See magrittr::[\%>\%][magrittr::pipe]
for details.
lhs %>% rhs lhs %$% rhs lhs %T>% rhs
#> [1] 3#> [1] 3#> [1] 3# it takes left hand side, do something (here a plot) # then pass it to next function (mean) ### %$% the exposition operator l <- list(x=x, x2=x^2) l %$% x#> [1] 1 2 3 4 5#> [1] 11# names in l (x and x2) are "exposed" to right hand side # See magrittr vignette for more!