1. ホーム
  2. パイソン

[解決済み] pandasのプロットにxとyのラベルを追加する

2022-04-01 02:16:11

質問

pandasを使って非常に単純なものをプロットする次のようなコードがあるとします。

import pandas as pd
values = [[1, 2], [2, 5]]
df2 = pd.DataFrame(values, columns=['Type A', 'Type B'], 
                   index=['Index 1', 'Index 2'])
df2.plot(lw=2, colormap='jet', marker='.', markersize=10, 
         title='Video streaming dropout by category')

<イグ

特定のカラーマップを使用する機能を維持したまま、xおよびyラベルを簡単に設定するにはどうすればよいですか?私は plot() pandas DataFramesのラッパーは、それ用のパラメータを取りません。

解決方法は?

Pandasの場合 バージョン1.10 を使用すると、パラメータ xlabelylabel メソッドで plot :

df.plot(xlabel='X Label', ylabel='Y Label', title='Plot Title')