I'd like to reproduce a network graph with the same (or close) layout. I know that igraph has the tkplot.getcoords() function. I'd like to copy/get/set.seed a set of vertex coordinates based on the results of gplot, which is the SNA package's plotting function.
I've looked for places to do this but haven't found anything. Any help would be much appreciated.
EDIT: Added a reproducible example. I'd like to have all 9 plots have the same layout without using igraph::tkplot.
library(statnet)
set.seed(101)
mydata <- data.frame(from = sample(1:15,10,replace = T),
to = sample(1:5,10,replace = T))
par(mfrow=c(3,3), mar=c(1,1,1,1))
k <- 1:9
for (i in 1:9) {
gplot(network(mydata),main = paste('Iteration',k[i]))
}