====== オブジェクト指向インターフェースでのグラフ作成 ====== ==== グラフ周囲の環境設定 ==== * オブジェクト指向インターフェース\\ fig = plt.figure(1) ax = fig.add_subplot(111) * ''plt.figure()'': 描画領域を作成 * ''fig.add_subplot()'': グラフのレイアウトと操作するグラフを指定 * ''111'': 描画領域を 1 行 1 列として扱い、1 番目のグラフを操作する。 * 1 番目の数字: 行数 * 2 番目の数字: 列数 * 3 番目の数字: 操作するグラフ * 参考サイト: [[https://openbook4.me/sections/1696 | matplotlibの描画の基本 | OpenBook]] {{tag>プログラミング}}