There seems to be some confusion about juliaβs |> vs Rβs %>%.
Rβs %>% transforms things so that x %>% f(y) is equivalent to f(x, y). Juliaβs |> operator doesnβt work like that, one reason that choice was made is because Julia doesnβt place the same emphasis on the first argument of functions the way the tidyverse ecosystem does.
the poster above gives a good example, you could also use Pipe.jl or a similar package.