2021-11

python code

折れ線グラフのオプション

オプションを使って、線の種類や色などを変えることができる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.su...
python code

matplotlibの画像の保存

普通に画像をコピーできる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot(...
python code

matplotlibの軸の設定

折れ線グラフの「X軸の項目名」を指定%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()x=a...
python code

matplotlibの軸ラベルの設定

%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot()ax.set_xlabe...
python code

matplotlibのレジェンドの設定

凡例は、legendで描画しますが、2通りのやり方があります。方法1:各グラフの描画時に凡例のラベルを指定する方法方法2:凡例の描画時に、まとめてラベルを指定する方法%matplotlibinlineimportmatplotlib.pyp...
python code

matplotlibでタイトルの設定

set_titleでサブプロットのタイトルを設定できます。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,axes=plt....
python code

matplotlibでの描画の設定

スタイルを指定することで、複数の項目を一度に変更可能です。描画スタイルの設定方法plt.style.use('ggplot') この部分にスタイルを入れる。fig,ax=plt.subplots()ax.plot()ax.plot();この...
python code

matplotlibと、サブプロット

複数のグラフを作るには%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')普通のグラフfig,ax=plt.subplots()ax.p...
python code

matplotlibの使い方

%matplotlibinlineグラフをインライン(埋め込み)表示にするimportmatplotlib.pyplotaspltpyplotをpltという名前でインポートするplt.style.use('seaborn-darkgrid'...
python code

pickle形式を使った保存

pickle.dump:オブジェクトをファイルに保存pickle.load:ファイルからオブジェクトを読込