my interrogation is the following :
I have a code that generates a plot using :
fig = plt.figure( figsize=(6.5,10))
ax = fig.gca()
I've used this routine to generate multiple plots. Is there a simple way to make the plot look like :

I know there is a command plt.subplots but I dont know how to place each plots in this configuration. Any help would be greatly appreciated

fig, axes = plt.subplots(1, 5)?