我已经编写了绘制折线图的功能。
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轴值外,其余格式仍保持相同。任何帮助将不胜感激!