4

pygraphviz 是否允许您将图像渲染到变量?我想通过网页提供动态图像,而不必将图形渲染到磁盘。

4

2 回答 2

0

根据消息来源,如果您在省略参数(或设置为)的情况draw下调用 AGraph 对象的方法,它将返回数据而不是保存到文件中。不要忘记指定参数。pathNoneformat

于 2013-09-04T09:29:02.607 回答
-1

我认为这就是你想要的:

# https://stackoverflow.com/questions/28533111/plotting-networkx-graph-with-node-labels-defaulting-to-node-name

import dgl
import numpy as np
import torch

import networkx as nx

import matplotlib.pyplot as plt
import matplotlib.image as mpimg

from pathlib import Path

g = dgl.graph(([0, 0, 0, 0, 0], [1, 2, 3, 4, 5]), num_nodes=6)
print(f'{g=}')
print(f'{g.edges()=}')

# Since the actual graph is undirected, we convert it for visualization purpose.
g = g.to_networkx().to_undirected()
print(f'{g=}')

# relabel
int2label = {0: "app", 1: "cons", 2: "with", 3: "app3", 4: "app4", 5: "app5"}
g = nx.relabel_nodes(g, int2label)

# https://networkx.org/documentation/stable/reference/drawing.html#module-networkx.drawing.layout
g = nx.nx_agraph.to_agraph(g)
print(f'{g=}')
print(f'{g.string()=}')

# draw
g.layout()
g.draw("file.png")

# https://stackoverflow.com/questions/20597088/display-a-png-image-from-python-on-mint-15-linux
img = mpimg.imread('file.png')
plt.imshow(img)
plt.show()

# remove file https://stackoverflow.com/questions/6996603/how-to-delete-a-file-or-folder
Path('./file.png').expanduser().unlink()
# import os
# os.remove('./file.png')

您基本上需要从文件中显式呈现图形对象,然后将其删除(不幸的是,没有更好的答案)。有关更多详细信息,请查看我关于为什么我认为 pygraphviz 是可视化的方法(而不是 networkx)的长时间讨论:https ://stackoverflow.com/a/67439711/1601580

于 2021-05-07T18:05:13.083 回答