R implementation of the Force Atlas 2 graph layout designed for Gephi. The algorithm is detailed in:
This is not a package yet, so you should download the "ForceAtlas2.R" file and source() it.
library(igraph)
g <- graph.ring(100)
layout.forceatlas2(g, iterations=10000, plotstep=500)
This function is currently under development, use it at your own risk. Is written in R not in C++ as the igraph package so it can be slow compared to other layouts.
- Bazyli Klockiewicz (bazyli.klockiewicz@analyx.com)
- Adolfo Alvarez (adolfo.alvarez@analyx.com)