无法在IPython笔记本中显示内嵌图表

时间:2015-08-14 13:41:57

标签: matplotlib ipython ipython-notebook anaconda

我已经看到了完全相同的问题,但答案并没有帮助我。像那些问题: Cannot show the graphs on ipython notebook

How to make IPython notebook matplotlib plot inline

所以我决定发一个问题,这样我就可以发布我的代码了,看看是否有什么不同......希望它是一个非常无聊的东西,我错过了。虽然代码在ipython shell中运行完美。提前谢谢!

%matplotlib inline

import matplotlib
import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 3*np.pi, 500)
plt.plot(x, np.sin(x**2))
plt.title('A simple chirp')
plt.show()

PS:我使用的是Anaconda发行版,我用它附带的快捷方式启动了笔记本IPython (Python 2.7) Notebook

PS2:我得到的输出几乎没有。

enter image description here

0 个答案:

没有答案