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
This is tough because you probably search for cyl in the function environment or the global environment, but it is actually evaluated in the context of mtcars through the eval()
I am also now remembering that in furrr this is a "common gotcha". Each argument to the function you are going to parallelize has to be evaluated once so it can be shipped off to the worker.
So maybe this is something the user has to live with?
In the below example, I would not have expected any failures
This is tough because you probably search for
cyl
in the function environment or the global environment, but it is actually evaluated in the context ofmtcars
through theeval()
This came up on SO as a furrr issue related to dplyr and rlang
https://stackoverflow.com/questions/64006043/using-tidy-evaluations-with-furrr
The text was updated successfully, but these errors were encountered: