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