I need to plot a gene network graph like this. I tried igraph package and the labels are on the nodes. Any idea how to plot this? Or should I use other packages instead?
This is my R code
obj.graph <- graph_from_adjacency_matrix(Omega, mode = "upper")
l <- layout_in_circle(obj.graph)
plot(obj.graph, layout = l, vertex.size = 5)
This is the output