I am still a beginner with networkx
I want to add multiple types of nodes in different position, I used the following code
pos = {0: (40, 20), 1: (20, 30), 2: (40, 30), 3: (30, 10)}
X=nx.Graph()
nx.draw_networkx_nodes(X,pos,node_size=3000,nodelist=[0,1,2,3],node_color='r')
but when I want to access the Graph X , if I type X.node it returns an empty list
and if I want to add more nodes I have to set their positions in the beginning using pos dictionary.
How can I add nodes to a graph in a specific location x and y using add_node()
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…