使用 Networkx to_agraph() 绘制图表

发布于 2024-12-11 13:17:41 字数 347 浏览 0 评论 0原文

我有一个 networkx 有向图对象。我可以使用 to_agraph 在文件中绘制图形。但我想在内存中绘制图形,然后可以将其保存在数据库表中,而不必将其写入文件。有办法这样做吗?

以下是我用来将图形绘制到文件的代码。

import networkx as nx
g = nx.DiGraph()
g.add_nodes_from(MyNodes)
g.add_add_edges_from(MyEdges)
grph=nx.to_agraph(g)
s=grph.string()
grph.layout(prog='dot')
grph.draw('test_graph.gif')

谢谢!!

I have a networkx digraph object. I can draw the graph in a file using to_agraph. But I want to draw the graph in memory, something that I can then save in a database table, without necessarily writing it to a file. Is there a way to do so?

Following is the code that I use to draw my graph to a file.

import networkx as nx
g = nx.DiGraph()
g.add_nodes_from(MyNodes)
g.add_add_edges_from(MyEdges)
grph=nx.to_agraph(g)
s=grph.string()
grph.layout(prog='dot')
grph.draw('test_graph.gif')

Thanks!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕梦 2024-12-18 13:17:41

如果您不指定文件,您将获得包含图像数据的字符串。
例如

In [1]: import networkx as nx

In [2]: G=nx.path_graph(4)

In [3]: A=nx.to_agraph(G)

In [4]: A.layout(prog='dot')

In [5]: png=A.draw(format='png')

In [6]: png[0:10]
Out[6]: '\x89PNG\r\n\x1a\n\x00\x00'

If you don't specify a file you will get a string with the image data.
e.g.

In [1]: import networkx as nx

In [2]: G=nx.path_graph(4)

In [3]: A=nx.to_agraph(G)

In [4]: A.layout(prog='dot')

In [5]: png=A.draw(format='png')

In [6]: png[0:10]
Out[6]: '\x89PNG\r\n\x1a\n\x00\x00'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文