powered by
Return a sorted vector of nodes id
topo_sort_kahn(g, random = FALSE)
A data frame with two columns: "id" is the names of nodes in g, and "id_num" is the topological ordering
An igraph object of a DAG
Boolean, whether the order of selected nodes is randomised in the process
df0 <- data.frame(from = c("a", "b"), to = c("b", "c"), stringsAsFactors = FALSE) g0 <- igraph::graph_from_data_frame(df0, directed = TRUE) topo_sort_kahn(g0)
Run the code above in your browser using DataLab