'Layout in social network analysis. library(igraph)

I built a social network:

enter image description here

My code:

plot(network, edge.width=E(network)$importance, layout=layout.sphere, vertex.color = "red", edge.color = "red", vertex.frame.color = "red", vertex.size = as.numeric(V(network)$vertex.size), vertex.label.cex=as.numeric(V(network)$vertex.label.cex))

I have a question, how to bring the location of the points, as in the photo:

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source