Change column order in deedle frame

落花浮王杯 提交于 2019-12-07 09:12:01

问题


What is the best way to change column order in deedle frame? For example if I have a deedle frame df with columns height, Name, and phone, but I need it in order Name, phone, and height.


回答1:


Deedle has RealignRows extension method, but it turns out that we don't have RealignColumns. This is an omission and if you send a PR to Deedle adding this, that would be awesome!

It can be implemented by looking at the series of columns, realigning the columns and turning that back into a data frame. In C#, this looks as follows:

Frame.FromColumns(df.Columns.Realign(new[] { "key 1", "key 2" }));


来源:https://stackoverflow.com/questions/32084072/change-column-order-in-deedle-frame

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!