标签: python matplotlib ipython
我的IPython笔记本中有以下代码:
%matplotlib inline fig = plt.figure() fig.show()
输入后,我看到以下内容:
<matplotlib.figure.Figure at 0x192e4ef0>
如何让matplotlib显示空图?
答案 0 :(得分:2)
是plt.show()而不是fig.show()
plt.show()
fig.show()