次のコードは、x軸のラベルとしてメインカテゴリ['one'、 'two'、 'three'、 'four'、 'five'、 'six']のみを示しています。セカンダリx軸ラベルとしてサブカテゴリ['A'、 'B'、 'C'、 'D']を表示する方法はありますか?ここで 複数のラベルを含む棒グラフ
df = pd.DataFrame(np.random.rand(6, 4),
index=['one', 'two', 'three', 'four', 'five', 'six'],
columns=pd.Index(['A', 'B', 'C', 'D'],
name='Genus')).round(2)
df.plot(kind='bar',figsize=(10,4))
私は2つのオプションを考えることができます。1.主1(参照[この](http://stackoverflow.com/questions/31803817以下アドホック二x軸を作成します。/how-to-add-second-x-axis-at-the-first-one-in-matplotlib)); 2. 'df.unstack()。plot.bar()'で始まり、後でFigureの属性を変更します。 – VinceP