l'm working with networkX to generate hundred of random graphs of class :
complete_graph()
star_graph()
balanced_tree()
wheel_graph()
watts_strogatz_graph(n, 2, 0)
l set number of nodes n=100
for each class l get create 20 examples.
My question is as follow :
for i in numpy.arange(20):
complete_graph=networkx.complete_graph(n)
node_positions = networkx.spring_layout(G, scale=100)
Adjacency = networkx.adjacency_matrix(G)
Do l get 20 different graphs in terms of adjacency matrix and nodes positions or for all the 20 graphs I get the same adjacency matrix and nodes positions?