0

我正在通过https://ipycytoscape.readthedocs.io/en/latest/创建图表ipycytoscape

jupyter notebook我已经使用我的 python 代码通过包创建了一个交互式图表。
但是,有没有办法将此源自 javascript 的图形保存为图像?

下面是一个示例代码。

import networkx as nx
G = nx.complete_graph(5)
cyto = ipycytoscape.CytoscapeWidget()
cyto.graph.add_graph_from_networkx(G)
display(cyto)
4

1 回答 1

1

谢谢你的问题。我发现了一些可能是你的开始:https ://nbconvert.readthedocs.io/en/latest/nbconvert_library.html#Extracting-Figures-using-the-HTML-Exporter 如果你想继续讨论这个我建议在我们的 github 上打开一个问题https://github.com/QuantStack/ipycytoscape/issues 干杯!

于 2021-03-29T15:20:08.913 回答