'Random network plot setting in R
I generated a random network by using 620 nodes and 2102 edges. I want to visualize it by using plot.But, 1. not sure how to make the plot nicer (make nodes more separated at least)? 2.adjust the node size based on 'degree'. my codes are:
set.seed(42)
Network_random <- erdos.renyi.game(620,2102,type='gnm')
plot(Network_random, vertex.col="degree", main="Network Random",layout=layout_nicely,margin=-0.25)
my current plot is as below:

Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
