Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含很多点的简单图表,所以我不想为所有点显示标签。但我确实希望能够通过工具提示来分辨哪个是哪个。
是否可以使用 networkx 添加/显示工具提示?
这是我的代码:
import networkx as nx g = nx.Graph() g.add_node(1, label="descriptive label") nx.draw(g)
我希望“描述性标签”显示为工具提示。有任何想法吗?
NetworkX 没有内置此功能,NetworkX 在下面使用 matplotlib,因此您可以在此处尝试建议:
matplotlib 中的点和线工具提示?
并将其调整为您的代码,希望这会有所帮助。