Making multiple plots in Matplotlib creates several subplots on a single figure.
Solution for How to make multiple plots in Matplotlib in Python : You can use matplotlib.pyplot.subplot() to make multiple plots Call matplotlib.pyplot.subplot(nrows, ncols, plot_number) to create a new subplot of a current plot matplotlib.pyplot positioned at plot_number in a grid with nrows rows and ncols columns. Under each call, modify the plot as desired before the creation of another subplot.