graph_from_adjacency_matrix_signed: Create signed graphs from adjacency matrices

View source: R/utils.R

graph_from_adjacency_matrix_signedR Documentation

Create signed graphs from adjacency matrices

Description

Create signed graphs from adjacency matrices

Usage

graph_from_adjacency_matrix_signed(A, mode = "undirected", ...)

Arguments

A

square adjacency matrix of a signed graph

mode

Character scalar, specifies how to interpret the supplied matrix. Possible values are: directed, undirected

...

additional parameters for from_adjacency()

Value

a signed network as igraph object

Examples

A <- matrix(c(0,1,-1,1,0,1,-1,1,0),3,3)
graph_from_adjacency_matrix_signed(A)

signnet documentation built on Sept. 9, 2023, 1:06 a.m.