我正在根据给定的 Y 值序列创建一个图表curveSeq
。(自动枚举 X 值:0,1,2...)
即对于curveSeq = [10,20,30]
,我的图表将包含以下点:
<0,10>, <1,20>, <2,30>.
nx.Graph
为了在一张图片中呈现所有内容,我在同一上面绘制了一系列图表。
我的问题是:
- 每个节点都显示其位置。即 location 中的节点
<0,10>
显示其各自的标签,我不知道如何删除它。 - 我想向某些特定节点添加标签,但我不知道如何。
例如,对于序列:
[0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1,1]
收到的图表是:
代码是:
for point in curveSeq:
cur_point = point
#assert len(cur_point) == 2
if prev_point is not None:
# Calculate the distance between the nodes with the Pythagorean
# theorem
b = cur_point[1] - prev_point[1]
c = cur_point[0] - prev_point[0]
a = math.sqrt(b ** 2 + c ** 2)
G.add_edge(cur_point, prev_point, weight=a)
G.add_node(cur_point)
pos[cur_point] = cur_point
prev_point = cur_point
#key:
G.add_node((curve+1,-1))
pos[(curve+1,-1)] = (curve+1,-1)
nx.draw(G, pos=pos, node_color = colors[curve],node_size=80)
nx.draw_networkx_edges(G,pos=pos,alpha=0.5,width=8,edge_color=colors[curve])
plt.savefig(currIteration+'.png')