在给画出的直线加上图例和标签可以参照下面的代码
import matplotlib.pyplot as plt x1 = [1,2,3] y1 = [5,7,4] x2 = [1,2,3] y2 = [10,14,12] plt.plot(x1,y1,label=‘line1‘) plt.plot(x2,y2,label=‘line2‘) plt.xlabel(‘x‘) plt.ylabel(‘y‘) plt.title(‘lines\n‘) #\n 可以使标题和图有一定的距离 plt.legend() plt.show()
如下图所示:
时间: 2024-11-11 22:23:49