I wonder if it's possible to "save" the layout of an igraph network so that others are able to reproduce the same graph? For now, the Fruchterman Reingold algorithm always create a newly looking network...
par(mfrow=c(1,2))
g <- erdos.renyi.game(100, 1/100)
V(g)$size<-seq(0.05,5,0.05)
layout <- layout.fruchterman.reingold(g)
plot(g,
layout=layout,
vertex.label=NA)
g
So essentially, can I somehow save & export the "layout" information?