| updateGraph {RedeR} | R Documentation |
Updates an active RedeR application session.
updateGraph(obj)
obj |
Object of RedPort Class. |
Updates RedeR graph.
Prior calling this method make sure that there is an active RedeR session.
Mauro Castro
# Initialize igraph
library(igraph)
edges<-c("n1","n2","n1","n3","n1","n4","n1","n5","n1","n6","n1","n7")
## Not run:
rdp <- RedPort()
calld(rdp)
addEdges(rdp, edges)
updateGraph(rdp)
## End(Not run)