adjacencyMatrix2List: Convert adjacency matrix to an adjacency list

View source: R/utils.R

adjacencyMatrix2ListR 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)

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