addEdgeBetweenContainers: Add edges between containers.

Description Usage Arguments Value Note Author(s) See Also Examples

Description

Method to add edges between RedeR containers. This method adds non-nested assignments, in contrast to the default behavior that builds nested associations to-and-from containers.

Usage

1
addEdgeBetweenContainers(obj, containerA, containerB )

Arguments

obj

Object of RedPort Class.

containerA

<string>

containerB

<string>

Value

Add graph objects.

Note

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

Author(s)

Mauro Castro

See Also

RedPort

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# Initialize igraph
library(igraph)

el<-matrix(c('n1','n2','n3','n4'), ncol=2, byrow=TRUE)
g <- graph.edgelist(el)

## Not run: 

  rdp <- RedPort()
  calld(rdp)
  
  addGraph( rdp, g, layout.kamada.kawai(g) )
  nestNodes( rdp, c('n1','n2') )
  nestNodes( rdp, c("n3","n4") ) 
  addEdgeBetweenContainers(rdp, "N0", "N1")
  updateGraph(rdp)

## End(Not run)  

RedeR documentation built on Nov. 8, 2020, 7:45 p.m.