Skip to content

Commit 2006548

Browse files
committed
update dependencies html help
1 parent 9495bbd commit 2006548

File tree

2 files changed

+53
-114
lines changed

2 files changed

+53
-114
lines changed

DependenciesGraphs/index.Rmd

+13-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "DependenciesGraphs"
33
output: html_document
44
---
55

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.
6+
**DependenciesGraphs** is a R package for dependencies visuallization. All the remarks and bugs are welcome on github : https://github.com/DataKnowledge/DependenciesGraphs.
77

88
## Installation
99

@@ -17,30 +17,37 @@ devtools::install_github("DataKnowledge/DependenciesGraphs")
1717

1818
#**DependenciesGraphs** make differents types of graphs :
1919

20-
###Dependdencies between functions in a package
21-
####Specific function
20+
###Dependencies between functions in a package
21+
####From a specific function
2222
```{r,message=FALSE}
2323
require(DependenciesGraphs)
24+
25+
# you mus first loaded the target package using library
2426
library(plyr,quietly = TRUE)
2527
dep <- funDependencies("package:plyr","count")
2628
plot(dep)
2729
```
2830

2931

3032
<p><br><br><br><br></p>
31-
####All functions in a specific package or environnement
33+
#### Between all functions
3234
```{r}
3335
dep <- envirDependencies("package:plyr")
3436
plot(dep,block=TRUE)
3537
```
3638

37-
###Dependdencies between packages
39+
###Dependencies between (installed) packages
3840
```{r}
3941
dep <- Pck.load.to.vis("plyr")
4042
plot(dep)
4143
```
4244

43-
###Shiny application for fast visualisation
45+
```{r}
46+
dep <- Pck.load.to.vis(c("htmlwidgets", "shiny"))
47+
plot(dep)
48+
```
49+
50+
###Explore your installed package daster with the Shiny application
4451

4552

4653
```{r,eval=FALSE}

DependenciesGraphs/index.html

+40-108
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)