将pyplot图表收集到单个页面/文档/等的好方法?

时间:2015-11-02 18:47:07

标签: python numpy matplotlib jupyter

我目前正在开发一个绘制许多图表的程序。我正在使用Jupyter。它到目前为止工作正常,但它将每个图形打印到自己的窗口。这不太理想,因为有数百个图表。

有哪些方法可以压缩输出?我希望有一种方法可以将多个图形发送到单个文档/窗口。

此外,我正在迭代字典,只在程序遇到感兴趣的事情时绘制图形,因此频率不是很可预测。它是这样的:

while still_true:
    if my_condition is True:
        a = np.arange(20) // not actually a range, but a dynamic np array
        plt.plot(a)
        plt.ylabel("some numbers")
        plt.show()

0 个答案:

没有答案