gpt4 book ai didi

python - 切片和赋值唯一顺序索引的多索引 Pandas 数据框

转载 作者:行者123 更新时间:2023-11-28 20:17:04 24 4
gpt4 key购买 nike

我想选择并更改数据框单元格的值。此数据框使用了 2 个索引:'datetime' 和 'idx'。两者都包含唯一且顺序的标签。 'datetime' 索引具有 datetime 类型的日期时间标签,'idx' 具有整数值标签。

import numpy as np
import pandas as pd

dt = pd.date_range("2010-10-01 00:00:00", periods=5, freq='H')
d = {'datetime': dt, 'a': np.arange(len(dt))-1,'b':np.arange(len(dt))+1}
df = pd.DataFrame(data=d)
df.set_index(keys='datetime',inplace=True,drop=True)
df.sort_index(axis=0,level='datetime',ascending=False,inplace=True)

df.loc[:,'idx'] = np.arange(0, len(df),1)+5
df.set_index('idx',drop=True,inplace=True,append=True)
print(df)

'这是数据框:

                         a  b
datetime idx
2010-10-01 04:00:00 5 3 5
2010-10-01 03:00:00 6 2 4
2010-10-01 02:00:00 7 1 3
2010-10-01 01:00:00 8 0 2
2010-10-01 00:00:00 9 -1 1

'假设我想获取 idx=5 的行。我怎么做?我可以用这个:

print(df.iloc[0])

然后我会得到下面的结果:

a    3
b 5
Name: (2010-10-01 04:00:00, 5), dtype: int32

但我想访问并设置该单元格中的值,其中 idx=5,column='a',通过指定 idx 值和列名称“a”。我该怎么做?

请指教。

最佳答案

您可以使用 DatFrame.query()查询MultiIndex DF的方法:

In [54]: df
Out[54]:
a b
datetime idx
2010-10-01 04:00:00 5 3 5
2010-10-01 03:00:00 6 2 4
2010-10-01 02:00:00 7 1 3
2010-10-01 01:00:00 8 0 2
2010-10-01 00:00:00 9 -1 1

In [55]: df.query('idx==5')
Out[55]:
a b
datetime idx
2010-10-01 04:00:00 5 3 5

In [56]: df.query('idx==5')['a']
Out[56]:
datetime idx
2010-10-01 04:00:00 5 3
Name: a, dtype: int32

或者您可以使用 DataFrame.eval()方法,如果你需要设置/更新一些单元格:

In [61]: df.loc[df.eval('idx==5'), 'a'] = 100

In [62]: df
Out[62]:
a b
datetime idx
2010-10-01 04:00:00 5 100 5
2010-10-01 03:00:00 6 2 4
2010-10-01 02:00:00 7 1 3
2010-10-01 01:00:00 8 0 2
2010-10-01 00:00:00 9 -1 1

解释:

In [59]: df.eval('idx==5')
Out[59]:
datetime idx
2010-10-01 04:00:00 5 True
2010-10-01 03:00:00 6 False
2010-10-01 02:00:00 7 False
2010-10-01 01:00:00 8 False
2010-10-01 00:00:00 9 False
dtype: bool

In [60]: df.loc[df.eval('idx==5')]
Out[60]:
a b
datetime idx
2010-10-01 04:00:00 5 3 5

PS 如果您的原始 MultiIndex 没有名称,您可以使用 rename_axis() 轻松设置它们方法:

df.rename_axis(('datetime','idx')).query(...)

替代(有点贵)解决方案 - 使用 sort_index() + pd.IndexSlice[]:

In [106]: df.loc[pd.IndexSlice[:,5], ['a']]
...
skipped
...
KeyError: 'MultiIndex Slicing requires the index to be fully lexsorted tuple len (2), lexsort depth (0)'

所以我们需要先对索引进行排序:

In [107]: df.sort_index().loc[pd.IndexSlice[:,5], ['a']]
Out[107]:
a
datetime idx
2010-10-01 04:00:00 5 3

关于python - 切片和赋值唯一顺序索引的多索引 Pandas 数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41329417/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com