Possible Duplicate:
R Pipelining functions
I find R syntax very unwieldy compared to F#:
In R - Instead of:
plot(exp(cumsum(returns)))
I would love to do
returns |> cumsum |> exp |> plot
Is there a way to overload an operator in R to achieve a similar effect?
thanks