blob: b26852bd8c9a26a2126e5372da58e4c55782c15f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
The magrittr package offers a set of operators which promote semantics
that will improve your code by
* structuring sequences of data operations left-to-right (as
opposed to from the inside and out),
* avoiding nested function calls,
* minimizing the need for local variables and function
definitions, and
* making it easy to add steps anywhere in the sequence of operations.
WWW: http://cran.r-project.org/web/magrittr/
|