覚え書きブログ

2018-02-11から1日間の記事一覧

Pythonの覚え書き(よく使い方を忘れる関数のメモ)

複数のグラフのプロット fig, figInds = plt.subplots(nrows=2, ncols=2) figInds[0,0].plot(xxx) figInds[0,0].set_title('xxx') figInds[0,1].plot(yyy) figInds[0,1].set_title('yyy') figInds[1,0].plot(zzz) figInds[1,0].set_title('zzz') figInds[1,1…