gpt4 book ai didi

python - Networkx 绘图标签部分在框外

转载 作者:太空宇宙 更新时间:2023-11-03 15:45:03 25 4
gpt4 key购买 nike

就画一个非常简单的4节点网络,

import networkx as nx
import matplotlib.pyplot as plt
G = nx.Graph()
node1 = "116.251.211.248"
node2 = "5.79.100.165"
node3 = "http.anturis.com"
node4 = "s411993.ip-37-187-141.eu"
G.add_node(node1)
G.add_node(node2)
G.add_node(node3)
G.add_node(node4)
G.add_weighted_edges_from([(node1, node2, 0.742345), (node1, node3, 0.916954), (node1, node4, 0.662011), (node1, node4, 0.818537), (node2, node3, 0.947824), (node2, node4, 0.800774), (node3, node4, 0.928537)])
pos=nx.shell_layout(G)
nx.draw(G, pos, with_labels=True)
plt.show()

我的问题是边缘标签部分落在框外

enter image description here

我刚开始使用 networkx 绘图。如何在左侧和右侧添加边距以便显示完整标签?

最佳答案

不幸的是,似乎没有固定边距的自动程序。您可以通过调用 plt.xlim(xmin,xmax) 手动调整边距。由于您知道节点位置 (pos),因此您可以在每一侧额外添加 25%:

#Your code here....
nx.draw(G, pos, with_labels=True)
x_values, y_values = zip(*pos.values())
x_max = max(x_values)
x_min = min(x_values)
x_margin = (x_max - x_min) * 0.25
plt.xlim(x_min - x_margin, x_max + x_margin)
plt.show()

enter image description here

关于python - Networkx 绘图标签部分在框外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50453043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com