python code 折れ線グラフのオプション オプションを使って、線の種類や色などを変えることができる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.su... 2021.11.16 python code
python code matplotlibの画像の保存 普通に画像をコピーできる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot(... 2021.11.15 python code
python code matplotlibの軸の設定 折れ線グラフの「X軸の項目名」を指定%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()x=a... 2021.11.15 python code
python code matplotlibの軸ラベルの設定 %matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot()ax.set_xlabe... 2021.11.15 python code
python code matplotlibのレジェンドの設定 凡例は、legendで描画しますが、2通りのやり方があります。方法1:各グラフの描画時に凡例のラベルを指定する方法方法2:凡例の描画時に、まとめてラベルを指定する方法%matplotlibinlineimportmatplotlib.pyp... 2021.11.15 python code
python code matplotlibでタイトルの設定 set_titleでサブプロットのタイトルを設定できます。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,axes=plt.... 2021.11.15 python code
python code matplotlibでの描画の設定 スタイルを指定することで、複数の項目を一度に変更可能です。描画スタイルの設定方法plt.style.use('ggplot') この部分にスタイルを入れる。fig,ax=plt.subplots()ax.plot()ax.plot();この... 2021.11.15 python code
python code matplotlibと、サブプロット 複数のグラフを作るには%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')普通のグラフfig,ax=plt.subplots()ax.p... 2021.11.15 python code
python code matplotlibの使い方 %matplotlibinlineグラフをインライン(埋め込み)表示にするimportmatplotlib.pyplotaspltpyplotをpltという名前でインポートするplt.style.use('seaborn-darkgrid'... 2021.11.11 python code
python code pickle形式を使った保存 pickle.dump:オブジェクトをファイルに保存pickle.load:ファイルからオブジェクトを読込 2021.11.11 python code