在IPython中,如果我使用下面的代码,我可以看到内联的情节:
%matplotlib inline
import matplotlib.pyplot as plt
plt.plot([1,2,3],[4,5,6])
但如果我使用此代码,图表不会显示在内联或单独的窗口中:
%matplotlib inline
import matplotlib.pyplot as plt
fig=plt.figure()
ax=fig.add_subplot(111)
ax.plot([1,2,3],[4,5,6])
我正在运行Python 3.5.2 | Anaconda 4.1.1(64位)|在Windows 7上 matplotlib版本是1.5.1