多线图功能

时间:2018-07-23 13:23:30

标签: python matplotlib plot

我已经编写了绘制折线图的功能。

def plt1(plot,xaxis,yaxis):

    plt.title('Distribution of {yaxis} across {xaxis}'.format(xaxis=xaxis, yaxis=yaxis))
    plt.ylabel(yaxis)
    plt.xlabel(xaxis)
    plt.legend(df.columns.values)
    plt.savefig("C:\\User\\folder\\plot.csv")
    plt.show()
    return(plt);

plt1(df,'x','y')

现在我需要制作多个折线图,它们具有与y轴相同的x轴和相同的csv文件的不同列(不同列的颜色不同)。除y轴值外,其余格式仍保持相同。任何帮助将不胜感激!

我需要类似这张图的东西 enter image description here

0 个答案:

没有答案