グラフの属性を示すインデックスを取り除く方法をお教えください。
(以下のbおよび、薄いオレンジ色を取り除きたい、です)
よろしくお願いいたします。
python
1import pandas as pd 2import matplotlib.pyplot as plt 3plt.rcParams['font.family'] = 'IPAPGothic' 4 5df = pd.DataFrame({ 'a':[30], 'b': [20] }) 6ax = plt.subplot() 7df.plot.bar(stacked=True, color=['#ff5900', '#ffa500'], width=0.15,ax=ax) 8ax.set_ylabel('数値') 9plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/21 10:25
2020/02/21 10:39