-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mutate doesn't work with functions with format pkg::function #412
Comments
On the less serious side, one can do
|
@romainfrancois This is another hybrid evaluation buglet, I think. Probably need to hybrid implementation of |
Using R 3.1, dplyr 0.2, OS X 10.9.4: @wch's second call without the
I guess this is because it uses
|
library(pipeR)
mtcars %>>%
dplyr::mutate(cyl2 = lag(cyl)) %>>%
dplyr::select(cyl, cyl2) %>>%
head
Does not work with mtcars %>>%
dplyr::mutate(cyl2 = dplyr::lag(cyl)) %>>%
dplyr::select(cyl, cyl2) %>>%
head
Does not find mtcars %>>%
dplyr::mutate(cyl2 = (dplyr::lag(cyl))) %>>%
dplyr::select(cyl, cyl2) %>>%
head
|
@renkun-ken The problem is with calling |
Thanks @wch for your remind :) NSE problems always look frustrating... |
For example, with dplyr not attached:
The text was updated successfully, but these errors were encountered: