library(data.table)
A dependency graph for all GitHub repos that use the rworkflows
GitHub Action.
Here is the code for creating the plot.
if(!require("echodeps"))remotes::install_github("RajLabMSSM/echodeps",
dependencies = TRUE)
res <- echodeps::dep_graph(pkg = "rworkflows",
method_seed = "github",
exclude = c("neurogenomics_rworkflows",
"neurogenomics_r_workflows"),
#node_size = "total_downloads",
reverse = TRUE,
save_path = here::here("reports","rworkflows_depgraph.html"))
## Save network plot as PNG
echodeps::visnet_save(res$save_path)
## Save all data and plots
saveRDS(res, here::here("reports","dep_graph_res.rds"))
knitr::kable(res$report)