addSeries: Add series to RedeR application.

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

Description

Method to send series of graphs to RedeR app.

Usage

1
addSeries(obj, g, ...)

Arguments

obj

Object of RedPort Class.

g

An igraph object.

...

Additional arguments passed to RedeR application.

Details

Additional arguments:

setnodes

Logical value, whether to update node attributes in the new item of the series (default = TRUE).

setedges

Logical value, whether to add edges and update attributes in the new item of the series (default = TRUE).

Value

Submits series of R graphs to RedeR app.

Author(s)

Mauro Castro

See Also

addGraph

Examples

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

## Not run: 

rdp <- RedPort()
calld(rdp)

###

g1 <- graph.lattice(c(3,3,3))
addGraph( rdp, g1, layout.kamada.kawai(g1) )
V(g1)$nodeColor<-heat.colors(vcount(g1))
addSeries( rdp, g1)

## End(Not run)

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