• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

R/H28-Sep-2021-8,8344,815

build/H03-May-2022-

inst/H29-Sep-2021-13,07110,970

man/H28-Sep-2021-4,4483,613

vignettes/H29-Sep-2021-288215

DESCRIPTIONH A D29-Sep-20211.5 KiB3534

LICENSEH A D28-Sep-202146 22

MD5H A D29-Sep-202117.7 KiB259258

NAMESPACEH A D29-Sep-20212.3 KiB9694

NEWSH A D28-Sep-20219.6 KiB213175

README.mdH A D28-Sep-20211.6 KiB5435

README.md

1[![CRAN Status Badge](https://www.r-pkg.org/badges/version/visNetwork)](https://CRAN.R-project.org/package=visNetwork)
2[![CRAN Downloads Badge](https://cranlogs.r-pkg.org/badges/visNetwork)](https://CRAN.R-project.org/package=visNetwork)
3
4
5# visNetwork
6
7### R package, using vis.js library for network visualization. visNetwork is now available on CRAN.
8
9# Online documentation
10
11### http://datastorm-open.github.io/visNetwork
12
13And have a look to multiple R examples, vis.js documentation (````visDocumentation````).
14
15# News
16
17## ``2.1.0`` available on CRAN (in a few days...)
18
19  * ### #361 : fix visHclust with new ggraph version
20  * ### switch to vis-network 9.1.0
21  * ### visTree : fix using invalid R colnames + crash no one X
22  * ### add fontawesome 5.13.0 support
23  * ### #377 : custom manipulation columns
24  * ### #335 : Enable highlightNearest degree for groups
25  * ### visTree : update performance compute boxplot sparkline with large data
26  * ### visTree/TreeModule : fix passing constant variable & character tooltipColumns
27
28![alt text](https://github.com/datastorm-open/visNetwork/blob/master/inst/img/tree_example.png)
29
30# Example
31
32````
33install.packages("visNetwork")
34
35# devtools::install_github("datastorm-open/visNetwork") for development version
36
37require(visNetwork)
38?visNetwork
39
40# minimal example
41nodes <- data.frame(id = 1:3)
42edges <- data.frame(from = c(1,2), to = c(1,3))
43visNetwork(nodes, edges)
44
45# vignette
46vignette("Introduction-to-visNetwork")
47
48# full javascript documentation
49visDocumentation()
50
51# shiny example
52shiny::runApp(system.file("shiny", package = "visNetwork"))
53````
54