| deleteEdges {RedeR} | R Documentation |
Method to remove edges between nodes in an active RedeR session.
deleteEdges(obj, edges)
obj |
Object of RedPort Class. |
edges |
Edge sequence as an array <array of strings> |
Removes the specified edges from the graph.
Prior calling this method invoke RedeR application via XML-RPC server (i.e. 'calld').
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)
deleteEdges(rdp, c("n1","n3","n1","n7") )
updateGraph(rdp)
## End(Not run)