Learn R Programming

NetworkToolbox (version 1.1.2)

ECO: ECO Neural Network Filter

Description

Applies the ECO neural network filtering method

Usage

ECO(data, weighted = TRUE, directed = FALSE)

Arguments

data

Can be a dataset or a correlation matrix

weighted

Should network be weighted? Defaults to TRUE. Set to FALSE to produce an unweighted (binary) network

directed

Is the network directed? Defaults to FALSE. Set TRUE if the network is directed

Value

A sparse association matrix

References

Fallani, F. D. V., Latora, V., & Chavez, M. (2017). A topological criterion for filtering information in complex brain networks. PLoS Computational Biology, 13(1), e1005305.

Examples

Run this code
# NOT RUN {
weighted_undirected_ECOnetwork<-ECO(neoOpen)

unweighted_undirected_ECOnetwork<-ECO(neoOpen,weighted=FALSE)

weighted_directed_ECOnetwork<-ECO(neoOpen,directed=TRUE)

unweighted_directed_ECOnetwork<-ECO(neoOpen,weighted=FALSE,directed=TRUE)
# }

Run the code above in your browser using DataLab