やったこと
matplotlib.pyplot.subplot を使ってみます
確認環境
$ ipython --version
6.1.0
$ jupyter --version
4.3.0
$ python --version
Python 3.6.2 :: Anaconda custom (64-bit)
import matplotlib
matplotlib.__version__
出力結果
'2.0.2'
調査
import matplotlib.pyplot as plt
%matplotlib inline
plt.subplot(221)
plt.plot([1,2,3])
plt.subplot(223)
plt.plot([4, 5, 6])
plt.subplot(224)
plt.plot([100, 101, 6])
出力結果