The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
%.>%
dot arrow pipe is a strict pipe with intended semantics:
“
a %.>% b
” is to be treated as if the user had written “{ . <- a; b };
” with “%.>%
” being treated as left-associative.
That is: %.>%
does not alter any function arguments
that are not explicitly named. %.>%
is designed to be
explicit and simple.
The following two expressions should be equivalent:
## [1] 0.8919465
## [1] 0.8919465
The notation is quite powerful as it treats pipe stages as expression
parameterized over the variable “.
”. This means you do not
need to introduce functions to express stages. The following is a valid
dot-pipe:
## [1] 1 4 9 16
The notation is also very regular in that many variations of expression work as expected. Example:
## [1] -0.9589243
## [1] -0.9589243
Regularity can be a big advantage in teaching and comprehension. Please see “In Praise of Syntactic Sugar” for discussion.
The dot arrow pipe has S3/S4 dispatch (please see “Dot-Pipe: an S3 Extensible Pipe for R”). However as the right-hand side of the pipe is normally held unevaluated, we don’t know the type except in special cases (such as the rigth-hand side being referred to by a name or variable). To force the evaluation of a pipe term, simply wrap it in .().
A detail of R-style pipes is the right argument is held unevalauted
(unless it is a name), so we can’t always use the class of the right
hand side to dispatch. To work around this we suggest using
.()
notation, which in the context of the pipe means
“evaluate early.” An example is given below:
## function (x) .Primitive("sin")
## [1] -0.9589243
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.