一次显示几个数字

时间:2017-08-10 12:45:21

标签: python matplotlib jupyter-notebook

考虑名为a的matplotlib数据列表。我试着在jupyter笔记本的单元格中写一下像

那样
import matplotlib.pyplot as plt

%matplotlib inline

for fig in a:
  fig.show()

但是我无法在单元格输出中绘制任何数字。 在循环内或之后写plt.show()是没用的。

我该如何正确地做到这一点?

1 个答案:

答案 0 :(得分:1)

选项可能是使用display来显示数字:

from IPython.core.display import display
for fig in a:
    display(fig)

enter image description here