在pandas中导入Excel文件的MultiIndex问题

时间:2014-05-26 13:40:49

标签: python excel pandas data-analysis

我导入了一张Excel文件并在熊猫DataFrame中对其进行了解析。

path = 'bla.xls'
x = pd.ExcelFile(path)
sheets = x.sheet_names
table = x.parse(sheets[36], header=2)

似乎有效,DataFrame-object具有预期的MultiIndex-index:

In[180]: table.index
Out[180]: MultiIndex(levels=[[u'Gesamt', u'Studiengang Hochschulbenennung'], [u'Bekleidungstechnik', u'Betriebswirtschaft', u'Biomedical Engineering', u'Ernährungs- und Hygienetechnik', u'Facility Management', u'Kommunikations- und Softwaretechnik', u'Lebensmittel, Ernährung, Hygiene', u'Maschinenbau', u'Pharmatechnik', u'Systems Engineering', u'Textil- und Bekleidungsmanagement', u'Wirtschaftsinformatik', u'Wirtschaftsingenieurwesen', u'Wirtschaftsingenieurwesen - Produktionsmanagement insbes. Fahrzeugwirtschaft'], [u'% innerhalb von Studiengang Hochschulbenennung', u'Anzahl']],
       labels=[[1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, -1], [1, -1, 3, -1, 6, -1, 7, -1, 5, -1, 9, -1, 0, -1, 10, -1, 8, -1, 11, -1, 2, -1, 12, -1, 13, -1, 4, -1, -1, -1], [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0]])

不幸的是,我无法选择一行:

In [181]: table.ix[('Studiengang Hochschulbenennung', 'Betriebswirtschaft')]
Out[182]: KeyError: 'Key length (2) was greater than MultiIndex lexsort depth (0)'

事实上:

In [182]: table.index.lexsort_depth
Out[182]: 0

,而

In [183]:len(table.index.levels)
Out[183]: 3

......这种语无伦次,是吗?

如何解决此问题并将table.index.lexsort_depth增加到3

修改: 与另一个question存在连接,其中类似的问题得到了很好的回答。

1 个答案:

答案 0 :(得分:1)

在选择行之前,您需要对数据框进行排序:

table.sort(inplace=True)
table.ix[('Studiengang Hochschulbenennung', 'Betriebswirtschaft')]

排序后,

In [21]: df.index.lexsort_depth 
Out[21]: 3