Last data update: 2014.03.03

R: Extract Community Membership for Nodes
which.communitiesR Documentation

Extract Community Membership for Nodes

Description

This function returns the community IDs of the communities to which one or more nodes belong.

Usage

which.communities(x, nodes)

Arguments

x

An object of class linkcomm or OCG.

nodes

A character vector specifying the nodes.

Value

An integer vector of community IDs.

Author(s)

Alex T. Kalinka alex.t.kalinka@gmail.com

References

Kalinka, A.T. and Tomancak, P. (2011). linkcomm: an R package for the generation, visualization, and analysis of link communities in networks of arbitrary size and type. Bioinformatics 27, 2011-2012.

Examples

## Generate graph and extract OCG communities.
g <- swiss[,3:4]
oc <- getOCG.clusters(g)

## Get edges from community 1.
which.communities(oc, nodes = 1)

Results