adjacencyList2Matrix: Convert adjacency list to an adjacency matrix

View source: R/utils.R

adjacencyList2MatrixR Documentation

Convert adjacency list to an adjacency matrix

Description

Convert adjacency list to an adjacency matrix

Usage

adjacencyList2Matrix(lt, square = FALSE)

Arguments

lt

A data frame which contains adjacency list.

square

Should the returned matrix be a square matrix?

Examples

set.seed(123)
df = data.frame(from = sample(letters, 10, replace = TRUE), 
                to = sample(letters, 10, replace = TRUE), 
                value = 1:10)
adjacencyList2Matrix(df)
adjacencyList2Matrix(df, square = TRUE)

circlize documentation built on May 11, 2022, 1:06 a.m.