src-exe/infomap-0.x/examples/R/example-igraph.R

# Load igraph library (assuming installed, else do install.package("igraph"))
message("Load igraph library...")
library(igraph)

# Load Infomap library
source("load-infomap.R")

## Zachary's karate club
g <- graph.famous("Zachary")

# Init Infomap network
infomap <- Infomap("--two-level --silent")

# Add links to Infomap network from igraph data
edgelist <- get.edgelist(g)
apply(edgelist, 1, function(e) infomap$addLink(e[1] - 1, e[2] - 1))

infomap$run()

tree <- infomap$tree

cat("Partitioned network in", tree$numTopModules(), "modules with codelength", tree$codelength(), "bits:\n")

clusterIndexLevel <- 1 # 1, 2, ... or -1 for top, second, ... or lowest cluster level
leafIt <- tree$leafIter(clusterIndexLevel)
modules <- integer(length = network$numNodes())

while (!leafIt$isEnd()) {
	modules[leafIt$originalLeafIndex + 1] = leafIt$moduleIndex() + 1
	leafIt$stepForward()
}

# Create igraph community data
comm <- make_clusters(g, membership = modules, algorithm = 'Infomap')
print(comm)

# Plot communities and network
plot(comm, g)
manlius/muxViz documentation built on March 1, 2023, 10:28 a.m.