如何在Pycharm中并行查看matplotlib图和调试变量?

时间:2019-06-02 11:55:13

标签: python matplotlib pycharm

我在Ubuntu和QT5Agg matplotlib后端下使用PyCharm 2019.1.2(专业版)。

在开发python脚本期间,我使用了Pycharm(Run | Debug 'scriptname')的调试功能。

我在绘制后设置了一个断点:

plt.plot(df)
plt.show()
print('breakpoint')       # here is the breakpoint

如果执行在该断点处停止,我可以在外部窗口中查看该图并将其放大等。

我也希望能够在Variables窗口中看到我的变量。

但这只能在关闭matplotlib窗口之后才能实现。

我的问题是:

如何处理绘图(放大等)并同时查看变量?

0 个答案:

没有答案