KWB-R / kwb.package

Install KWB Packages and Show Package Dependencies
https://kwb-r.github.io/kwb.package
MIT License
0 stars 0 forks source link

What about package DependenciesGraphs to plot dependencies? #11

Open hsonne opened 1 year ago

hsonne commented 1 year ago
#remotes::install_github("kwb-r/sema.berlin")

# http://datastorm-open.github.io/DependenciesGraphs/
require(DependenciesGraphs)

# you mus first loaded the target package using library
library(kwb.event)

dep <- DependenciesGraphs::funDependencies(
  "package:kwb.event", 
  name.function = "getEventsWithStatisticsForMultipleSeries"
)

plot(dep)

dep <- envirDependencies("package:kwb.event")

plot(dep, block = TRUE)