fig = plt.figure(figsize=(20, 10))
ax1 = plt.subplot2grid((3,3), (0,0), colspan=3)
ax1.text(0.2,0.2,"ax1")
ax2 = plt.subplot2grid((3,3), (1,0), colspan=2)
ax2.text(0.2,0.2,"ax2")
ax3 = plt.subplot2grid((3,3), (1, 2), rowspan=2)
ax3.text(0.2,0.2,"ax3")
ax4 = plt.subplot2grid((3,3), (2, 0))
ax4.text(0.2,0.2,"ax4")
ax5 = plt.subplot2grid((3,3), (2, 1))
ax5.text(0.2,0.2,"ax5")
plt.suptitle("subplot2grid")