我有一个多索引DataFrame
,其名称附加到列级别。我希望能够轻松地打乱列,使它们与用户指定的顺序相匹配。由于这是在管道中,我无法使用这个推荐的解决方案并在创建时正确订购它们。
我有一个看起来(有点)像的数据表
Experiment BASE IWWGCW IWWGDW
Lead Time 24 48 24 48 24 48
2010-11-27 12:00:00 0.997 0.991 0.998 0.990 0.998 0.990
2010-11-28 12:00:00 0.998 0.987 0.997 0.990 0.997 0.990
2010-11-29 12:00:00 0.997 0.992 0.997 0.992 0.997 0.992
2010-11-30 12:00:00 0.997 0.987 0.997 0.987 0.997 0.987
2010-12-01 12:00:00 0.996 0.986 0.996 0.986 0.996 0.986
我想接受一个类似的列表['IWWGCW', 'IWWGDW', 'BASE']
并将其重新排序为:
Experiment IWWGCW IWWGDW BASE
Lead Time 24 48 24 48 24 48
2010-11-27 12:00:00 0.998 0.990 0.998 0.990 0.997 0.991
2010-11-28 12:00:00 0.997 0.990 0.997 0.990 0.998 0.987
2010-11-29 12:00:00 0.997 0.992 0.997 0.992 0.997 0.992
2010-11-30 12:00:00 0.997 0.987 0.997 0.987 0.997 0.987
2010-12-01 12:00:00 0.996 0.986 0.996 0.986 0.996 0.986
需要注意的是,我并不总是知道“实验”会达到什么水平。我试过了(df
上面显示的多索引框架在哪里)
df2 = df.reindex_axis(['IWWGCW', 'IWWGDW', 'BASE'], axis=1, level='Experiment')
但这似乎不起作用 - 它成功完成,但返回的 DataFrame 的列顺序未更改。
我的解决方法是具有如下功能:
def reorder_columns(frame, column_name, new_order):
"""Shuffle the specified columns of the frame to match new_order."""
index_level = frame.columns.names.index(column_name)
new_position = lambda t: new_order.index(t[index_level])
new_index = sorted(frame.columns, key=new_position)
new_frame = frame.reindex_axis(new_index, axis=1)
return new_frame
我的期望在哪里reorder_columns(df, 'Experiment', ['IWWGCW', 'IWWGDW', 'BASE'])
,但感觉就像我在做额外的工作。有没有更简单的方法来做到这一点?