Learn R Programming

NetworkToolbox (version 1.4.2)

convert2igraph: Convert Network(s) to igraph's Format

Description

Converts single or multiple networks into igraph's format for network analysis

Usage

convert2igraph(A, neural = FALSE)

Arguments

A

Adjacency matrix (network matrix) or brain connectivity array (from convertConnBrainMat)

neural

Is input a brain connectivity array (i.e., m x m x n)? Defaults to FALSE. Set to TRUE to convert each brain connectivity matrix

Value

Returns a network matrix in igraph's format or returns a list of brain connectivity matrices each of which have been convert to igraph's format

Examples

Run this code
# NOT RUN {
# Pearson's correlation only for CRAN checks
A <- TMFG(neoOpen, normal = FALSE)$A

igraphNetwork <- convert2igraph(A)

# }
# NOT RUN {
neuralarray <- convertConnBrainMat()

igraphNeuralList <- convert2igraph(neuralarray, neural = TRUE)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab