剧情没有出现在朱皮特

时间:2019-11-03 03:23:57

标签: matplotlib jupyter-notebook

import matplotlib.pyplot as plt
%matplotlib inline

fig = plt.figure()

我应该得到一个没有值的弹出式空图,但是在jupyter中仅显示以下输出:

<Figure size 432x288 with 0 Axes>

为什么没有显示图形?

1 个答案:

答案 0 :(得分:1)

使用%matplotlib inline代替%matplotlib notebook,在笔记本中显示输出。

import matplotlib.pyplot as plt
%matplotlib notebook

fig = plt.figure()