, , matplotlibs subplot2grid. , (3,7 ) . :
import matplotlib.pyplot as plt
x = [1,2]
y = [3,4]
fig = plt.subplots(squeeze=False)
ax1 = plt.subplot2grid((3, 7), (0, 1))
ax2 = plt.subplot2grid((3, 7), (1, 2))
ax1.plot(x,y)
ax2.plot(x,y)
plt.show()
:

EDIT:
Subplot2grid, , . fig, axes = plt.subplots(3, 7, squeeze=False), axes[0][1].plot(x, y), , . , , subplot2grid, , .
, ax1 = plt.subplot2grid((3, 7), (0, 1)) , "", 3 7. , 21 , , , , . , , subplot2grid - . (3,7) ax1 = ... , (0,1) , , .
, , 3x7. 21 , , , ax21 = plt.subplot2grid(...).