初めてパンダを試してみました。最初にピボットテーブルをインデックスで並べ替え、次に一連の値で並べ替えようとしています。
これまで私が試した:
table = pivot_table(sheet1, values='Value', rows=['A','B'], aggfunc=np.sum)
# Sorts by value ascending, can't change to descending
table.copy().sort()
table
# The following gives me the correct ordering in values, but ignores index
sorted_table = table.order(ascending=False)
sorted_table
# The following brings me back to the original ordering
sorted_table = table.order(ascending=False)
sorted_table2 = sorted_table.sortlevel(0)
sorted_table2
ピボットテーブルをインデックス、次に値で並べ替える正しい方法は何ですか?