gpt4 book ai didi

python - 如何连接 pandas 中的 DatetimeIndex 对象?

转载 作者:行者123 更新时间:2023-12-01 01:02:11 26 4
gpt4 key购买 nike

假设我有 3 只 Pandas DatetimeIndex对象:

import pandas as pd

idx1 = pd.date_range('2019-01-01 00:00:00', '2019-01-01 01:00:00', freq='5T')
idx2 = pd.date_range('2019-01-01 02:00:00', '2019-01-01 03:00:00', freq='5T')
idx3 = pd.date_range('2019-01-02 00:00:00', '2019-01-02 01:00:00', freq='5T')

如何将它们组合成一个索引?

我采取的迂回方式是首先将它们转换为 series ,然后使用 pandas.concat函数来组合它们,然后将系列转换回 DatetimeIndex:

# This works, but requires type conversions to and from
# intermediate series objects:
combined = pd.concat([idx1.to_series(), idx2.to_series(), idx3.to_series()])
idx = pd.DatetimeIndex(combined.values)

有没有直接的方法来组合pandas中的索引?

最佳答案

尝试使用“union”子句。

combined = idx1.union(idx2).union(idx3)

关于python - 如何连接 pandas 中的 DatetimeIndex 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55695924/

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