https://github.com/datastorm-open/DependenciesGraphs
https://github.com/datastorm-open/DependenciesGraphs
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/datastorm-open/DependenciesGraphs
- Owner: datastorm-open
- Created: 2015-04-29T09:31:40.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T06:57:59.000Z (8 months ago)
- Last Synced: 2024-08-13T07:15:35.612Z (8 months ago)
- Language: R
- Size: 72.3 KB
- Stars: 60
- Watchers: 6
- Forks: 11
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - datastorm-open/DependenciesGraphs - (R)
README
# DependenciesGraphs : an R package for dependencies visualization between packages and functions
## Installation
Package is actually only available on github :
````R
devtools::install_github("datastorm-open/DependenciesGraphs")
````## Usage
For use directly in R, you must first load package(s) using ````library```` function :
````R
library("ibr")
````#### All dependencies between functions in an environment
````R
# Prepare data
dep <- envirDependencies("package:ibr")# visualization
plot(dep)
````
#### All dependencies from a function in an environment````R
# Prepare data
dep <- funDependencies("package:ibr","iterchoiceS1")# visualization
plot(dep)
````#### Explore your R with the shiny app
````R
launch.app()
````#### More example
http://datastorm-open.github.io/DependenciesGraphs/