getNodes {RedeR}R Documentation

Get nodes.

Description

Method to get node list from an active RedeR session.

Usage

getNodes(obj, ...)

Arguments

obj

Object of RedPort Class.

...

Additional arguments passed to RedeR application.

Details

Additional arguments:

status

Filter options. Valid arguments: <'selected'>, <'nonselected'> or <'all'>. Default='selected'

type

Filter options. Valid arguments: <'node'>, <'container'> or <'all'>. Default='node'.

Value

Returns nodes <array of strings>

Note

Prior calling this method invoke RedeR application via XML-RPC server (i.e. 'calld').

Author(s)

Mauro Castro

See Also

RedPort getGraph

Examples

# 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)
  getNodes(rdp)

## End(Not run)  

[Package RedeR version 1.41.5 Index]