gpt4 book ai didi

python - Pandas 使用其他不规则时间列表对不规则时间序列进行重新采样和插值

转载 作者:太空宇宙 更新时间:2023-11-04 11:19:40 26 4
gpt4 key购买 nike

我从 2 个不同的传感器收集数据,这些传感器以不均匀的间隔异步运行。我想从传感器 1 获取数据,并将其插值到传感器 2 的时间戳中。我发现了一种使用 Pandas 进行此操作的方法,首先创建一个组合时间序列,对其进行插值,然后将插值时间序列与第二个传感器的时间序列组合,以仅显示相交时间。是否有更 Pythonic(或 Pandaic)的方式来更有效地做到这一点。这是使用我上面描述的方法的示例代码:

import numpy as np
from matplotlib import pyplot as plt
import datetime
import pandas as pd

rand_secs = np.sort(np.random.randint(1, high=60,size=10))
times = [pd.datetime(2019, 5, 23,9, x) for x in rand_secs]
frame1 = pd.DataFrame(index = times,
data = np.sin(rand_secs/60*2*np.pi))
ax1 = frame1.plot(marker='+')
plt.xlim(pd.datetime(2019, 5, 23,9, 0), pd.datetime(2019, 5, 23,9, 59))
plt.ylim(-1.1,1.1)

times2 = [pd.datetime(2019, 5, 23,9, x) for x in np.sort(np.random.randint(1, high=60,size=10))]
frame2 = pd.DataFrame(index = times2)

frame12_combined = pd.merge(frame1, frame2, how='outer',left_index=True, right_index=True)
frame12_interp = frame12_combined.interpolate(method='index') #Linear is not Correct

frame1_resampled = pd.merge(frame2, frame12_interp, how='left',left_index=True, right_index=True)
frame1_resampled.plot(ax=ax1,style='o' )
ax1.legend(['Original time series', 'Resampled time series'])

最佳答案

使用 Pandas,我们可以执行以下操作:

您可以使用 union来自 pandas.Index 以及 reindex来自 pandas.DataFrame,这将消除所有合并:

ax1 = frame1.plot(marker='+')
frame1_r = frame1.reindex(frame1.index.union(frame2.index))\
.interpolate(method='index')\
.reindex(frame2.index)
frame1_r.plot(ax=ax1, style='o')

输出:

enter image description here

关于python - Pandas 使用其他不规则时间列表对不规则时间序列进行重新采样和插值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56285924/

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