Learn R Programming

crandep (version 0.3.9)

topo_sort_kahn: Return a sorted vector of nodes id

Description

Return a sorted vector of nodes id

Usage

topo_sort_kahn(g, random = FALSE)

Value

A data frame with two columns: "id" is the names of nodes in g, and "id_num" is the topological ordering

Arguments

g

An igraph object of a DAG

random

Boolean, whether the order of selected nodes is randomised in the process

Examples

Run this code
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