In [4]:
%matplotlib inline
import matplotlib.pyplot as plt

In [6]:
fig = plt.figure()
ax1 = fig.add_subplot(2,2,1)
ax2 = fig.add_subplot(2,2,2)
ax3 = fig.add_subplot(2,2,3)



In [ ]: