-
Help
DescriptionI'll preface this with the fact that i'm relatively new to using targets. In my workflow one of the functions I use is called That function, Is it possible for the plot created by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
For a I don't have plans to change how |
Beta Was this translation helpful? Give feedback.
For a
tar_render()
report, the only tracked dependencies are the upstream targets marked withtar_load()
and/ortar_read()
. If you find yourself using custom functions, it's usually better to create a few targets with those functions and then load them into the report, or if they are not used in any other targets, maybe include those functions in the report inline.I don't have plans to change how
tar_render()
registers dependencies. One reason is to keep things consistent withtar_quarto()
. Since Quarto runs in a separate process outside R, it does not automatically know about the global functions in a pipeline.