DependenciesGraphs is a R package for dependencies visuallization. All the remarks and bugs are welcome on github : https://github.com/DataKnowledge/DependenciesGraphs.
Package is actually only available on github. You can install it with :
devtools::install_github("DataKnowledge/DependenciesGraphs")
require(DependenciesGraphs)
# you mus first loaded the target package using library
library(plyr,quietly = TRUE)
dep <- funDependencies("package:plyr","count")
plot(dep)
dep <- envirDependencies("package:plyr")
plot(dep,block=TRUE)
dep <- Pck.load.to.vis("plyr")
plot(dep)
dep <- Pck.load.to.vis(c("htmlwidgets", "shiny"))
plot(dep)
launch.app()