Learn R Programming

bipartite (version 2.19)

listModuleInformation: listModuleInformation

Description

This function takes an object of class "moduleWeb" and returns information about the names of the nodes of which the computed modules exist.

Usage

listModuleInformation(moduleWebObject)

Value

The value of the function is a list of lists of lists of vectors representing the names of the nodes involved in a certain module.

value[[x]][[y]][[1]]

vector with the names of the "row nodes" comprised by the z.th module in depth x-1 (sic!)

value[[x]][[y]][[2]]

vector with the names of the "column nodes" comprised by the z.th module in depth x-1 (sic!)

Arguments

moduleWebObject

Object of class "moduleWeb"

Author

Rouven Strauss

Examples

Run this code
if (FALSE) {
data(small1976)

moduleWebObject = computeModules(small1976);
moduleList = listModuleInformation(moduleWebObject);
}

Run the code above in your browser using DataLab