Topological sort of a DAG {MXM} | R Documentation |
Topological sort of a DAG
Description
Topological sort of a DAG.
Usage
topological_sort(dag)
Arguments
dag |
A square matrix representing a directed graph which contains 0s and 1s. If G[i, j] = 1 it means there is an arrow from node i to node j. When there is no edge between nodes i and j if G[i, j] = 0. |
Details
The function is an R translation from an old matlab code.
Value
A vector with numbers indicating the sorting. If the matrix does not correspond to a DAG, NA will be returned.
Author(s)
Ioannis Tsamardinos and Michail Tsagris
R implementation and documentation: Ioannis Tsamardinos <tsamard@csd.uoc.gr> and Michail Tsagris mtsagris@uoc.gr
References
Chickering, D.M. (1995). A transformational characterization of equivalent Bayesian network structures. Proceedings of the 11th Conference on Uncertainty in Artificial Intelligence, Montreal, Canada, 87-98.
See Also
Examples
# simulate a dataset with continuous data
# simulate a dataset with continuous data
G = rdag(100, 10, 0.3)$G
G[G == 2] <- 1
G[G == 3] <- 0
topological_sort(G)