Skip to content

RandyRDavila/InfoMap.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InfoMap

Build Status

A simple implementation of the InfoMap community detection algorithm.

julia> using Graphs, InfoMap

julia> g = SimpleGraph(6)

julia> add_edge!(g, 1, 2)

julia> add_edge!(g, 1, 3)

julia> add_edge!(g, 2, 3)

julia> add_edge!(g, 2, 4)

julia> add_edge!(g, 4, 5)

julia> add_edge!(g, 4, 6)

julia> add_edge!(g, 5, 6)

julia> infomap(g)
2-element Vector{Vector{Int64}}:
 [1, 3, 2]
 [4, 6, 5]

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages