You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(dplyr)
#> #> Attaching package: 'dplyr'#> The following objects are masked from 'package:stats':#> #> filter, lag#> The following objects are masked from 'package:base':#> #> intersect, setdiff, setequal, union
library(magrittr)
library(memoise)
`%>%`<- memoise(`%>%`)
mtcars %>% mutate(x=mpg)
#> Error in mutate(x = mpg): object 'mpg' not found
Is it possible to memoise the magrittr pipe
%>%
?Just as-is it doesn't seem to work, see reprex:
Created on 2022-06-17 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: