使用draw_networkx(),如何显示多个绘图窗口?
以下代码一次仅创建一个窗口,第二个窗口仅在用户关闭第一个窗口时才会显示。
如何用不同的标题同时显示它们?
nx.draw_networkx(..a..)
nx.draw_networkx(..b..)
The following code will create only one window at a time, the second window will only show when the first one is closed by the user.
How to show them at the same time with different titles?
nx.draw_networkx(..a..)
nx.draw_networkx(..b..)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它的工作原理与使用 Matplotlib 绘制其他图相同。
使用figure()命令切换到新图窗。
It works the same as making other plots with Matplotlib.
Use the figure() command to switch to a new figure.
您可以使用 matplotlib 和网格来显示多个图形:
上面的代码将生成此图:
参考:https://networkx.org/documentation/networkx-1.9/examples/drawing/ four_grids.html
You can use matplotlib and a grid to show multiple graphs:
Code above will generates this figure:
Reference: https://networkx.org/documentation/networkx-1.9/examples/drawing/four_grids.html