欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-05-25 12:53:29
...

问题
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