Pipes in R
Pipe, written as “%>%“ is basically an efficient operator, supplied by magrittr R package. The pipe operator is notably famous due to its wide range of use in dplyr and by the proficient dplyr users. The usage of pipe operator allows one to write “sin(5)” as “5 %>% sin“, which is inspired by F#‘s pipe-forward operator “|>” and is further characterised by: Continue reading “Debugging Magrittr Pipelines in R with Bizarro Pipe and Eager Assignment”