作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有以下 CSV 数据:
id,gene,celltype,stem,stem,stem,bcell,bcell,tcell
id,gene,organs,bm,bm,fl,pt,pt,bm
134,foo,about_foo,20,10,11,23,22,79
222,bar,about_bar,17,13,55,12,13,88
我可以这样成功地总结它们:
import pandas as pd
df = pd.read_csv("http://dpaste.com/1X74TNP.txt",header=None,index_col=[1,2]).iloc[:, 1:]
df.columns = pd.MultiIndex.from_arrays(df.ix[:2].values)
df = df.ix[2:].astype(int)
df.index.names = ['cell', 'organ']
df = df.reset_index('organ', drop=True)
result = df.groupby(level=[0, 1], axis=1).mean()
result = result.stack().replace(np.nan, 0).unstack()
result = result.swaplevel(0,1, axis=1).sort_index(axis=1)
看起来像:
In [341]: result
Out[341]:
bm fl pt
bcell stem tcell bcell stem tcell bcell stem tcell
cell
foo 0 15 79 0 11 0 22.5 0 0
bar 0 15 88 0 55 0 12.5 0 0
我的问题是,如何从 result
中获取第一级的列索引作为列表:
['bm','fl','pt']
最佳答案
result.columns
返回具有 levels 属性的 pandas.core.index.MultiIndex
。
list(result.columns.levels[0])
返回
['bm', 'fl', 'pt']
关于python - 如何将 Pandas 列多索引名称作为列表获取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34082137/
我是一名优秀的程序员,十分优秀!