Learn R Programming

RedeR (version 1.20.0)

addSeries: 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.

Value

Submits series of R graphs to RedeR app.

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

See Also

addGraph

Examples

Run this code

rdp <- RedPort('MyPort')

## Not run: 
# 
# 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)

Run the code above in your browser using DataLab