addSeries {RedeR}R Documentation

Add series to RedeR application.

Description

Method to send series of graphs to RedeR app.

Usage

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

# 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)

[Package RedeR version 1.41.5 Index]