two plots in one figure python matplotlib code example
Example 1: matplotlib multiple plots
fig = plt.figure()
# total_rows, total_columns, subplot_index(1st, 2nd, etc..)
plt.subplot(2, 2, 1)
plt.plot(x, y)
plt.subplot(2, 2, 2)
plt.plot(x, y)
plt.subplot(2, 2, 3)
plt.plot(x, y)
plt.subplot(2, 2, 4)
plt.plot(x, y)
Example 2: multiple plot in one figure python
import matplotlib.pyplot as plt
plt.plot(, , 'line type', label='label here')
plt.plot(, , 'line type', label='label here')
plt.legend(loc='best')
plt.show()