Python: The subplot() Function
The subplot() function describes the layout of the figure. You can draw as many plots as you like on
one figure, just by describing the number of rows, columns, and the index of the plot.
For Eg. subplot (2, 3 , 2)
Here the graph area will have 2 rows and 3 column and figure will be displayed in second(2) position.
Sample code and output with Temperature analysis: