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",
height="100%",
reverse = TRUE,
save_path = here::here("reports","rworkflows_depgraph.html"))
saveRDS(res, here::here("reports","dep_graph_res.rds"))
knitr::kable(res$report)