-
Notifications
You must be signed in to change notification settings - Fork 129
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
function dependencies are missing: drake_config() in a magrittr pipe #527
Comments
Thanks for the report. This is an instance of #335 and tidyverse/magrittr#163. Your 1. Explicitly supply an environment.
envir <- environment() # Get the global environment with all your custom code.
plan %>%
drake_config(envir = envir) %>% # Explicitly supply the environment.
vis_drake_graph() 2. Or just call
|
Thanks for your response! In my case it was necessary not only to change the code, by also to |
Ah yes, this is because of #504 and #507. The graph construction steps in the preprocessing are now memoized (via memo_expr()). |
Hi, thanks for a really amazing package!
I noticed that sometimes drake doesn't see function dependencies. Any suggestions why is this happening?
The text was updated successfully, but these errors were encountered: