Skip to content

Commit 6eb78ad

Browse files
committed
Add reference on man
1 parent 0090ae3 commit 6eb78ad

74 files changed

Lines changed: 152 additions & 31 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: visNetwork
22
Title: Network Visualization using 'vis.js' Library
33
Version: 1.0.2
4-
Date: 2016-09-14
4+
Date: 2016-10-05
55
Authors@R: c(
66
person(family = "Almende B.V.", role = c("aut", "cph"),
77
comment = "vis.js library in htmlwidgets/lib, http://visjs.org, http://www.almende.com/home"),

R/visConfigure.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#'\link{visPhysics} for control physics, \link{visInteraction} for interaction, \link{visNetworkProxy} & \link{visFocus} & \link{visFit} for animation within shiny,
2323
#'\link{visDocumentation}, \link{visEvents}, \link{visConfigure} ...
2424
#'
25+
#'@references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
26+
#'
2527
#' @export
2628
visConfigure <- function(graph,
2729
enabled = NULL,

R/visDocumentation.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#'
2222
#' @export
2323
#' @importFrom utils browseURL
24+
#' @references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
25+
#'
2426
visDocumentation <- function(viewer = getOption("viewer")){
2527
if (!is.null(viewer)){
2628
tempDir <- tempdir()

R/visEdges.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
#' visNetwork(nodes, edges)
138138
#'
139139
#' @export
140-
140+
#' @references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
141141
visEdges <- function(graph,
142142
title = NULL,
143143
value = NULL,

R/visExport.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#'\link{visDocumentation}, \link{visEvents}, \link{visConfigure} ...
3535
#'
3636
#'@export
37-
37+
#'@references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
3838
visExport <- function(graph, type = "png", name = "network",
3939
label = paste0("Export as ", type),
4040
background = "#fff", float = "right",

R/visFit.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#'}
2323
#'
2424
#'@export
25-
25+
#'@references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
2626
visFit <- function(graph, nodes = NULL,
2727
animation = list(duration = 1500, easingFunction = "easeInOutQuad")){
2828

R/visFocus.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#'}
2626
#'
2727
#'@export
28-
28+
#'@references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
2929
visFocus <- function(graph, id, scale = 2,
3030
offset = list(x = 0, y = 0),
3131
locked = TRUE,

R/visGetEdges.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#'}
2020
#'
2121
#'@export
22-
22+
#'@references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
2323
visGetEdges <- function(graph, input = paste0(graph$id, "_edges")){
2424

2525
if(!any(class(graph) %in% "visNetwork_Proxy")){

R/visGetNodes.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#'}
2020
#'
2121
#'@export
22-
22+
#'@references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
2323
visGetNodes <- function(graph, input = paste0(graph$id, "_nodes")){
2424

2525
if(!any(class(graph) %in% "visNetwork_Proxy")){

R/visGetPositions.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#'}
2121
#'
2222
#'@export
23-
23+
#'@references See online documentation \url{http://datastorm-open.github.io/visNetwork/}
2424
visGetPositions <- function(graph, nodes = NULL, input = paste0(graph$id, "_positions")){
2525

2626
if(!any(class(graph) %in% "visNetwork_Proxy")){

0 commit comments

Comments
 (0)