パンダを使用して非常に単純なものをプロットする次のコードがあるとします。
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 のラッパーは、それに固有のパラメーターを取りません。
pd.plot()
ますか?pd.plot()
以上の追加の簡潔さを考えると、呼び出す必要はplt.plot()
なく、より簡潔にする方が理にかなっているようax.set_ylabel()
です。