magrittr and wrapr Pipes in R, an Examination
Win-Vector Blog 2018-04-06
Summary:
Let’s consider piping in R both using the magrittr package and using the wrapr package. magrittr pipelines The magittr pipe glyph “%>%” is the most popular piping symbol in R. magrittr documentation describes %>% as follow. Basic piping: x %>% f is equivalent to f(x) x %>% f(y) is equivalent to f(x, y) x %>% … Continue reading magrittr and wrapr Pipes in R, an Examination