I am trying to replicate a figure from a text book with the igraph
package. This code draws the structure correctly:
library(igraph)
g <- graph( c( "W","X", "Y","Z", "Y","W", "Z","W"), dir=FALSE)
plot(g, vertex.shape = "none")
but the entire graphic is rotated so it does not match the book. The above plot has the X node up at 1:00 on the clock face. I would like it so it is out at 9:00. I saw a post that showed that igraph::tkplot() can be rotated but I need a static plot. Is there a way to rotate an igraph network plot that is not rendered with tkplot(g)?