在Colaboratory上使用plt.savefig保存图像。

8 浏览
0 Comments

在Colaboratory上使用plt.savefig保存图像。

我正在使用在线的Jupyter笔记本Collaboratory。

我有以下代码,我正在使用这些函数绘制一些图形,并希望将图形保存在本地。

我该怎么做?

def make_plot_comparison(Xlabel,Ylabel,l1,l2,l1_title,l2_title,name): 
    plt.xlabel(Xlabel)
    plt.ylabel(Ylabel)
    plt.plot(l1,label=l1_title)
    plt.plot(l2,label=l2_title)
    plt.legend(loc='center right')
    plt.title(name)
    #plt.xlim(-5, 25)
    plt.savefig("abc.png")
    plt.show()

0