-
Help
DescriptionI have a targets pipeline specified in quarto document (https://github.com/PHSKC-APDE/hyrule/blob/mermaid/example_workflow/_targets.qmd). I want to render the DAG via
When executed locally/interactively, I'm trying to make a more simple reprex that reproduces the issue, but so far I haven't been able to figure out why my specific case is being wonky. To recreate my specific issue (at least on my two machines):
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In the "ML Record Linkage Pipeline" section, if I see: print(tar_network(targets_only = TRUE)$vertices$type)
#> character(0)
print(tar_network(targets_only = FALSE)$vertices$type)
#> [1] "function" "function" "function" "function" "function" "function"
#> [7] "function" "object" "function" "function" "object" "function"
#> [13] "object" "function" "function" "function" "function" "function"
#> [19] "function" "function" "function" "function" "function" "function"
#> [25] "function" "function" "function" "function" "function" The pipeline has no targets in it, only imported objects and functions. So it makes sense that the first graph is empty. |
Beta Was this translation helpful? Give feedback.
In the "ML Record Linkage Pipeline" section, if I see:
The pipeline has no targets in it, only imported objects and functions. So it makes sense that the first graph is empty.