Learn R Programming

gRbase (version 1.8-6.7)

graph-coerce-api: API for coercing graph representations

Description

API for coercing graph representations.

Usage

g_gn2dm_(object)

g_gn2sm_(object)

g_gn2ig_(object)

g_dm2gn_(object)

g_dm2sm_(object)

g_dm2ig_(object)

g_sm2gn_(object)

g_sm2dm_(object)

g_sm2ig_(object)

g_ig2gn_(object)

g_ig2dm_(object)

g_ig2sm_(object)

g_xm2gn_(object)

g_xm2ig_(object)

g_xm2dm_(object)

g_xm2sm_(object)

g_xm2xm_(object, result = "matrix")

g_gn2xm_(object, result = "matrix")

g_gn2ftM_(object)

g_gn2tfM_(object)

graphNEL2adjMAT(object, result = "matrix")

Arguments

object

An object representing a graph

result

Either 'matrix' (dense) or 'dgCMatrix' (sparse, can be abbreviated to 'Matrix').

Synonymous functions

For backward compatibility with downstream packages we have the following synonymous functions:

* graphNEL2adjMAT = g_gn2xm_ (Used in HydeNet)

* graphNEL2M = g_gn2xm_ (Used in simPATHy)

* M2graphNEL = g_xm2gn_ (Used in simPATHy)

Details

No checking is made. In the function the following names are used:

* "ig": "igraph";

* "gn": "graphNEL";

* "sm": "dgCMatrix" (sparse matrix);

* "dm": "matrix" (dense matrix)

See Also

ug, dag