This is a fairly simply question. But I couldn\'t find the answer per google/stackexchange and looking at the documentation of magrittr.
How do you feed the result of a chain of
library(pipeR)
data.frame( x = c(1:3), y = (4:6)) %>>%
sum %>>%
(~ a)
The pipeR tutorial may be helpful: http://renkun.me/pipeR-tutorial/
For assignment: http://renkun.me/pipeR-tutorial/Pipe-operator/Pipe-with-assignment.html