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.
有谁知道一个库来绘制各种项目之间的关系以显示它们在 Python 中的相互联系?
我什至现在都不知道这些图表叫什么。最好的例子是Visual Thesaurus之类的东西。
我对 Matplotlib 有点熟悉,但还没有见过这种类型的情节。
我认为networkx会适合你的目的。Networkx 使用matplotlib可视化生成的图形。
我建议使用库pydot:它提供了 GraphViz 的接口,你可以用它来表示各种关系。最重要的是,它在大型社区中非常标准,并且被很多人使用。
我建议你看看你可以用GraphViz做什么,如果这符合你的需要,那就去吧!