How do I plot 5 subplots instead of 6 plots as a output to a jupyter notebook cell. I'm trying to plot 5 separate subplots but when I tried using,
fig, ax = plt.subplots(2, 3, figsize=(10, 7))
This is returning 6 subplots in two rows and three columns. What I'm trying to achieve is plotting 5 subplots in two rows?
Eg: In first row I need three subplots and in second row I need only two subplots instead of there.
How can I achieve this using matplotlib or seaborn?