在具有 10x10 个节点的 2D 图中,我意识到我希望节点从左上角开始标记,向下和按列:
1st column -> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
2nd column -> [10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
依此类推,直到我到达第 10 列。相反,我的代码从左下角开始,向上和按列标记它们。我想需要注意的是,pos2
但我不知道如何改变它。我尝试reverse
了inds
andvals
列表,但结果是图表相对于 y 或垂直轴的反映。相反,我正在寻找相对于水平轴的反射。
import networkx as nx
from pylab import *
import matplotlib.pyplot as plt
%pylab inline
#n=100 Number of nodes
ncols=10 #Number of columns in a 10x10 grid of positions
N=10 #Nodes per side
G=nx.grid_2d_graph(N,N)
labels = dict( ((i,j), i + (N-1-j) * N ) for i, j in G.nodes() )
nx.relabel_nodes(G,labels,False)
inds=labels.keys()
vals=labels.values()
inds=sorted(inds,reverse=False)
vals=sorted(vals, reverse=False)
pos2=dict(zip(vals,inds))
nx.draw_networkx(G, pos=pos2, with_labels=True, node_size = 250, node_color='lightblue')
plt.axis('off')
plt.show()