deepdep | R Documentation |
This function is an ultimate wrapper for get_dependencies
. It inherits all of the arguments and
allows to recursively search for the dependencies at the higher level of depth
.
deepdep(
package,
depth = 1,
downloads = FALSE,
bioc = FALSE,
local = FALSE,
dependency_type = "strong"
)
package |
A |
depth |
An |
downloads |
A |
bioc |
A |
local |
A |
dependency_type |
A |
An object of deepdep
class.
get_dependencies
library(deepdep)
dd_downloads <- deepdep("ggplot2")
head(dd_downloads)
dd_2 <- deepdep("ggplot2", depth = 2, downloads = TRUE)
plot_dependencies(dd_2, "circular")
dd_local <- deepdep("deepdep", local = TRUE)
plot_dependencies(dd_local)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.