Skip to content

Commit 1ee2174

Browse files
committed
2 parents 44b5503 + 36107b7 commit 1ee2174

File tree

2 files changed

+262
-0
lines changed

2 files changed

+262
-0
lines changed

DependenciesGraphs/index.Rmd

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: "DependenciesGraphs"
3+
output: html_document
4+
---
5+
6+
**DependenciesGraphs** is a R package for visualisation of dependencies. All the remarks and bugs returns are welcome on github : https://github.com/DataKnowledge/DependenciesGraphs.
7+
8+
## Installation
9+
10+
Package is actually only available on github. You can install it with :
11+
12+
```{r,eval=FALSE}
13+
devtools::install_github("DataKnowledge/DependenciesGraphs")
14+
```
15+
16+
17+
18+
#**DependenciesGraphs** make differents types of graphs :
19+
20+
###Dependdencies between functions in a package
21+
####Specific function
22+
```{r,message=FALSE}
23+
require(DependenciesGraphs)
24+
library(plyr,quietly = TRUE)
25+
dep <- funDependencies("package:plyr","count")
26+
plot(dep)
27+
```
28+
29+
30+
<p><br><br><br><br></p>
31+
####All functions in a specific package or environnement
32+
```{r}
33+
dep <- envirDependencies("package:plyr")
34+
plot(dep,block=TRUE)
35+
```
36+
37+
###Dependdencies between packages
38+
```{r}
39+
dep <- Pck.load.to.vis("plyr")
40+
plot(dep)
41+
```
42+
43+
###Shiny application for fast visualisation
44+
45+
46+
```{r,eval=FALSE}
47+
launch.app()
48+
```
49+
50+
51+

DependenciesGraphs/index.html

+211
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)