gpt4 book ai didi

python - 修改 Pandas 数据框中日期时间索引中的小时

转载 作者:太空宇宙 更新时间:2023-11-04 01:01:51 25 4
gpt4 key购买 nike

我有一个如下所示的数据框:

master.head(5)
Out[73]:
hour price
day
2014-01-01 0 1066.24
2014-01-01 1 1032.11
2014-01-01 2 1028.53
2014-01-01 3 963.57
2014-01-01 4 890.65


In [74]: master.index.dtype

Out[74]: dtype('<M8[ns]')

我需要做的是用列中的小时更新索引中的小时,但以下方法不起作用:

In [82]: master.index.hour = master.index.hour(master['hour'])

TypeError: 'numpy.ndarray' object is not callable

In [83]: master.index.hour = [master.index.hour(master.iloc[i,0]) for i in len(master.index.hour)]

TypeError: 'int' object is not iterable

如何进行?

最佳答案

IIUC 我想你想构造一个 TimedeltaIndex:

In [89]:
df.index += pd.TimedeltaIndex(df['hour'], unit='h')
df

Out[89]:
hour price
2014-01-01 00:00:00 0 1066.24
2014-01-01 01:00:00 1 1032.11
2014-01-01 02:00:00 2 1028.53
2014-01-01 03:00:00 3 963.57
2014-01-01 04:00:00 4 890.65

只是为了与使用 apply 进行比较:

In [87]:
%timeit df.index + pd.TimedeltaIndex(df['hour'], unit='h')
%timeit df.index + df['hour'].apply(lambda x: pd.Timedelta(x, 'h'))

1000 loops, best of 3: 291 µs per loop
1000 loops, best of 3: 1.18 ms per loop

您可以看到使用 TimedeltaIndex 明显更快

关于python - 修改 Pandas 数据框中日期时间索引中的小时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32453038/

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