%P>% {ViewPipeSteps} | R Documentation |
%P>%
Prints and pipesThis pipe variant prints the object received from the left hand side prior to piping it to the right hand side.
lhs %P>% rhs
lhs |
The left hand side of the pipe. |
rhs |
The right hand side of the pipe. |
called for side effects
This code is experimental. Use at your own risk.
if (!require(dplyr)) stop("Examples need dplyr to run")
mtcars %>%
filter(am == 1) %P>%
select(qsec)