gpt4 book ai didi

python - 使用 NetworkX/Matplotlib 绘制具有正确位置坐标的节点

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

我知道 x/y 轴被翻转了(柏林在汉堡的东南部),但我需要手动修复这个问题还是 matplotlib/networkx 可以为我做这个?如果需要手动完成,是否有最佳方法?

import networkx as nx

G = nx.Graph()

G.add_node('Hamburg', pos=(53.5672, 10.0285))
G.add_node('Berlin', pos=(52.51704, 13.38792))

nx.draw(G, nx.get_node_attributes(G, 'pos'), with_labels=True, node_size=0)

enter image description here

最佳答案

你可以使用

from matplotlib import pyplot

pyplot.gca().invert_yaxis()
pyplot.gca().invert_xaxis()

关于python - 使用 NetworkX/Matplotlib 绘制具有正确位置坐标的节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32488772/

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