Matplotlib StopIteration异常

时间:2018-08-17 23:16:00

标签: python-3.x matplotlib jupyter-notebook scatter-plot jupyter-lab

我正在Jupyter-Lab中使用for循环进行绘图。但是,在第10个情节之后,我不断收到StopIteration异常。知道为什么吗?

for i in range(0,14):
    plt.figure()
    plt.scatter(y=y, x=X[:,0], color=next(colors), marker='.', label="")
    plt.legend(loc='lower right')
    plt.title("")
    plt.xlabel("Feature")
    plt.ylabel("Response")
    plt.show() 

StopIteration: <Figure size 432x288 with 0 Axes>

0 个答案:

没有答案