Python:将多个图循环绘制到单个Pdf中

时间:2018-08-02 06:15:55

标签: python pdf matplotlib save

我需要帮助将多个图表绘制到同一pdf文件中。数据为CSV格式,我用X和y的不同组合绘制图形,需要将其打印到单个pdf文件中,类似于多页pdf。

注意:它不是子图。

def plott(x,bins):
    for X in x:
    for Y in y:
        x=[...]
        y=[...]
    n, bins = plt.plot(X,Y, bins,normed=True)
    plt.savefig(filename+".pdf",dpi=300,bbox_inches='tight')
    plt.show()
    return (plt)

我无法与此“ Reference Qn”相关。 谢谢!

0 个答案:

没有答案