Closed gdevenyi closed 6 years ago
%>%
is conceptually a lot like python .
method chaining (although objects are passed immutably).
so x %>% mean %>% log
is essentially log(mean(x))
or pseudo numpy x.mean().log()
Those notes are spurious, it happens when you pipe to those operators, e.g. 1 %>% `!=`(2)
is mistakenly thinking !=
is being used as a unary operator.
Working on effectsize adding, saw this in the build/install step:
I looked at the code, but its built with the %>% magics which I don't grok at all yet.