getGraph {RedeR} | R Documentation |
Method to get and wrap up RedeR graphs into R objects.
getGraph(obj, ...)
obj |
Object of RedPort Class. |
... |
Additional arguments passed to RedeR application. |
Additional arguments:
Filter options for RedeR graph status. Valid arguments: <'selected'>, <'nonselected'> or <'all'> (default='all').
Filter options for RedeR graph objects. Valid arguments: <'node'>, <'container'> or <'all'> (default='node').
Filter options for RedeR graph attributes. Valid arguments: <'plain'>, <'minimal'> or <'all'> (default='plain').
Returns igraph objects.
Mauro Castro
# Initialize igraph library(igraph) ## Not run: rdp <- RedPort() calld(rdp) #ps. first add a graph (e.g. see samples in RedeR or 'addGraph' method)! g <- getGraph(rdp) ## End(Not run)