The magrittr package provides operators for chaining R expressions with forward pipes.
I would like to use the pipe-operator %>% introduced in the magrittr package in a package I wrote myself to …
r namespaces magrittrSince the introduction of the %>% operator in the magrittr package (and it's use in dplyr), I have started to …
r magrittrIs it possible to set all column names to upper or lower within a dplyr or magrittr chain? In the …
r dplyr magrittrThis is a fairly simply question. But I couldn't find the answer per google/stackexchange and looking at the documentation …
r magrittrI recently discovered the pipe operator %>%, which can make code more readable. Here is my MWE. library(dplyr) # for …
r dplyr magrittrI want the index of an element in a vector x x <- c("apple", "banana", "peach", "cherry") With …
r dplyr magrittr