Skip to content
Prev 3865 / 12125 Next

[R-pkg-devel] Package dependency graphs of packages in development (local)

You can try `pr$draw_tree()`, but it is quite buggy, and fails for
infinite (Suggests) loops:
https://github.com/r-lib/pkgdepends/issues/129

This might be an easier way to get the direct dependencies of each
package in the
dependency tree:
tibble::as_tibble(pr$get_install_plan(FALSE))[, c("package", "dependencies")]

Gabor
On Thu, May 9, 2019 at 11:09 AM Rainer M Krug <Rainer at krugs.de> wrote: