<matplotlib.figure.Figure at 0x244deb8dd68>
<matplotlib.axes._subplots.AxesSubplot at 0x244deb99358>
<matplotlib.text.Text at 0x244defc9240>
在绘图时有没有办法隐藏这些?
答案 0 :(得分:2)
添加&#34;;&#34;在你的matplotlib命令之后。这似乎抑制了输出。
plt.plot(np.arange(0,5))
plt.title('Some Title')
收益率:
<matplotlib.text.Text at 0x119188490>
和一张图片。
然而:
plt.plot(np.arange(0,5))
plt.title('Some Title');
只是产生图像。
这是在v4 Jupyter笔记本中使用python 2完成的。