matrix2graph {threejs}R Documentation

Convert a matrix or column-sparse matrix to a list of edges and nodes for use by graphjs.

Description

Convert a matrix or column-sparse matrix to a list of edges and nodes for use by graphjs.

Usage

matrix2graph(M)

Arguments

M

either a matrix or any of the possible column sparse matrix objects from the Matrix package.

Value

A list with node and edges data frame entries used by graphjs.

Note

Numeric graphs are assumed to be weighted and the edge "size" values are set to the corresponding matrix entries.

See Also

graphjs, graph2Matrix

Examples

data(LeMis)
M <- graph2Matrix(LeMis$edges, LeMis$nodes)
G <- matrix2graph(M)

[Package threejs version 0.2.2 Index]