MixedGraph {SEMID} | R Documentation |
Construct MixedGraph object
Description
Creates an object representing a mixed graph. The methods that are currently available to be used on the mixed graph include
ancestors
descendants
parents
siblings
isSibling
htrFrom
trFrom
getHalfTrekSystem
getTrekSystem
inducedSubgraph
L
O
nodes
numNodes
stronglyConnectedComponent
tianComponent
tianDecompose
see the individual function documentation for more information.
Usage
MixedGraph(
L = matrix(0, 1, 1),
O = matrix(0, 1, 1),
vertexNums = seq(1, length = nrow(L))
)
Arguments
L |
see |
O |
as for L. |
vertexNums |
the labeling of the vertices in the graph in the order of the rows of L and O. Labels must be positive integers. |
Value
An object representing the MixedGraph
[Package SEMID version 0.4.1 Index]