listModuleInformation {bipartite} | R Documentation |
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)
Arguments
moduleWebObject |
Object of class "moduleWeb" |
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!) |
Author(s)
Rouven Strauss
Examples
## Not run:
data(small1976)
moduleWebObject = computeModules(small1976);
moduleList = listModuleInformation(moduleWebObject);
## End(Not run)
[Package bipartite version 2.20 Index]