美文网首页
pandas 常用操作

pandas 常用操作

作者: 小明akira | 来源:发表于2019-03-27 20:54 被阅读0次
  • 将 multindex的index转换为columns
df = pd.DataFrame(np.arange(12).reshape((4,3)), index=[['a','a','b','b'], [1,2,1,2]], columns=['green','blue','red'])
df.index.names=['key1','key2']
print(df)
df.reset_index(level=[0,1])
df.reset_index(level=['key1','key2'])

http://dougaoyang.github.io/2017/09/22/convert-pandas-index-in-dataframe-to-column.html

相关文章

网友评论

      本文标题:pandas 常用操作

      本文链接:https://www.haomeiwen.com/subject/poatbqtx.html