mergeOutEdges: Merge out-edges between connected containers and transfers...

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

Description

Method to assign out-edges to containers in an active RedeR session. This method transfers edges from nodes to the respective containers.

Usage

1

Arguments

obj

Object of RedPort Class.

...

Additional arguments passed to RedeR application.

Details

Additional arguments:

rescale

Logical value. Whether to rescale the out-edge width to fit container size limits; if false, it will run a simple sum (default=TRUE).

lb

Custom lower bound to rescale edge width (default=NULL) <numerics>.

ub

Custom upper bound to rescale edge width between containers (default=NULL) <numerics>.

nlev

Number of levels to be merged in the hierarchy (default=1) <integer>.

Value

Add/change edge assigments.

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
# Initialize igraph
library(igraph)

el<-matrix(c("n1","n2","n1","n3","n1","n4","n2","n5","n2","n6","n2","n7"), 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") )
  mergeOutEdges(rdp)  
  updateGraph(rdp)

## End(Not run)  

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