adjacencyMatrix2List {circlize}R Documentation

Convert adjacency matrix to an adjacency list

Description

Convert adjacency matrix to an adjacency list

Usage

adjacencyMatrix2List(mat, keep.zero = FALSE)

Arguments

mat

A numeric matrix.

keep.zero

Whether to keep the interactions with value zero.

Examples

set.seed(999)
mat = matrix(sample(18, 18), 3, 6) 
rownames(mat) = paste0("S", 1:3)
colnames(mat) = paste0("E", 1:6)
adjacencyMatrix2List(mat)

[Package circlize version 0.4.16 Index]