Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
R
 
 
 
 
 
 
 
 
 
 
 
 
man
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

linkcomm

CRAN status metacran downloads R build status Lifecycle: stable

Summary

linkcomm is an R package that provides tools for generating, visualising, and analysing Link Communities in networks. See the companion paper for more information.

Installation

install.packages("linkcomm")

Usage

# Explore the in-built Les Miserables network:
library(linkcomm)
lm <- getLinkCommunities(lesmiserables)

# Visualize the communities:
plot(lm, type = "graph", layout = "spencer.circle")

# Extract the nodes from the first community:
n1 <- getNodesIn(lm, clusterids = 1)

# Nodes shared by communities 10 and 11:
ns <- get.shared.nodes(lm, comms = 10:11)

# Node community centrality scores:
nc <- getCommunityCentrality(lm)

# Community connectedness scores:
cc <- getCommunityConnectedness(lm)

References

Kalinka AT, 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.

About

Tools for Generating, Visualising, and Analysing Link Communities in Networks

Topics

Resources

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.