Jupyter Notebook使用plt.show()输出“Figure size 640x480 with 1 Axes”

问题
Jupyter Notebook使用plt.show()

第一次执行输出“Figure size 640x480 with 1 Axes”
第二次执行显示正常。

解决办法:
导入库(import)时添加%matplotlib inline。前面后面都可以。 不在这个Cell也应该是可以的。

%matplotlib inline
import numpy as np
import matplotlib.pylab as plt

def step_function(x):
    return np.array(x > 0, dtype=np.int)

x = np.arange(-5.0, 5.0, 0.111)
y = step_function(x)
plt.plot(x, y)
plt.ylim(-0.1, 1.1)
plt.show()

你可能感兴趣的:(机器学习,jupyter,notebook)