Equivalents to magrittr's pipes, plus some additions :
The %S>%
pipe is like %>%
except it supports using !!!
in any function.
The %L>%
pipe is like %>%
except it logs to the console the call and the execution time.
The %\*>>%
family of pipes contains equivalent that go faster because they
don't support functional chains (. %>% foo() %>% bar()
nor the compound pipe (%<>%
).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | lhs %<>% rhs
lhs %>% rhs
lhs %>>% rhs
lhs %T>% rhs
lhs %T>>% rhs
lhs %$% rhs
lhs %$>>% rhs
lhs %S>% rhs
lhs %S>>% rhs
lhs %L>% rhs
lhs %L>>% rhs
|
lhs |
A value or a dot ( |
rhs |
A function call using pipe semantics of the relevant pipe. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.