multiple lines on one plot matplotlib code example
Example 1: python plot multiple lines in same figure
Call plt.plot() as many times as needed to add additional lines to plot.
import matplotlib.pylot as plt
x_coordinates = [1, 2, 3]
y1_coordinates = [1, 2, 3]
y2_coordinates = [3, 4, 5]
plt.plot(x_coordinates, y1_coordinates)
plt.plot(x_coordinates, y2_coordinates)
Example 2: multiple plot in one figure python
import matplotlib.pyplot as plt
plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
plt.legend(loc='best')
plt.show()