CreateIgGraphs: Convert a list of adjacency matrices to a list of igraph...

View source: R/igraphintegration.R

CreateIgGraphsR Documentation

Convert a list of adjacency matrices to a list of igraph graphs.

Description

Convert a list of adjacency matrices to a list of igraph graphs.

Usage

CreateIgGraphs(adjlist, directed, selfloops, weighted = NULL)

Arguments

adjlist

a list of adjacency matrices

directed

a boolean argument specifying whether object is directed or not.

selfloops

a boolean argument specifying whether the model should incorporate selfloops.

weighted

boolean, generate weighted graphs?

Value

list of igraph graphs.

Examples

data('adj_karate')
adj_list <- list(adj_karate)
glist <- CreateIgGraphs(adj_list, FALSE, FALSE)


gi0na/ghypernet documentation built on April 13, 2024, 2:33 a.m.