analyzeNetwork {FGNet}R Documentation

Analyze Functional Network

Description

Analyzes the degree and betweenness of the genes in the functional network.

Usage

analyzeNetwork(incidMatrices, fNw = NULL, plotOutput = TRUE, colors = NULL)

Arguments

incidMatrices

list or matrix. Output from fea2incidMat or the equivalent incidence matrices.

fNw

list. Return from functionalNetwork to avoid recalculating.

plotOutput

logical. Wether to plot the degree and betweenness boxplots.

colors

vector. Colors for the metagroups

Value

List:

See Also

Overview of the package: FGNet

Package tutorial: vignette("FGNet-vignette")

Examples

## Not run: 
# Previous Steps
jobID <- 3907019
results <- fea_gtLinker_getResults(jobID)
incidMat <- fea2incidMat(results, filterAttribute="Silhouette Width")


# Plot node degree and betweensess
analyzeNetwork(incidMat)

# Get stats without plotting
nwStats <- analyzeNetwork(incidMat, plotOutput=FALSE)
names(nwStats)
nwStats$hubsTable

## End(Not run)

[Package FGNet version 3.27.0 Index]