sg_add_nodes_p {sigmajs} | R Documentation |
Add nodes or edges
Description
Proxies to dynamically add *multiple* nodes or edges to an already existing graph.
Usage
sg_add_nodes_p(proxy, data, ..., refresh = TRUE, rate = "once")
sg_add_edges_p(proxy, data, ..., refresh = TRUE, rate = "once")
Arguments
proxy |
An object of class |
data |
A |
... |
any column. |
refresh |
Whether to refresh the graph after node is dropped, required to take effect, if you are running force the algorithm is killed and restarted at every iteration.. |
rate |
Refresh rate, either |
Value
The proxy
object.
Note
Have the parameters from your initial graph match that of the node you add, i.e.: if you pass size
in your initial chart,
make sure you also have it in your proxy.
Examples
## Not run:
demo("add-nodes", package = "sigmajs")
demo("add-edges", package = "sigmajs")
## End(Not run)
[Package sigmajs version 0.1.5 Index]