This pull request does away with the use of the magrittr pipe %>% in favor of R's native pipe |>. While there are some features of %>% that are useful, these are not being used in the package at present and the native pipe has less overhead (both computational and in terms of package dependencies).
This pull request does away with the use of the magrittr pipe
%>%
in favor of R's native pipe|>
. While there are some features of%>%
that are useful, these are not being used in the package at present and the native pipe has less overhead (both computational and in terms of package dependencies).