使用熊猫提高时间序列数据的采样率

时间:2018-11-19 16:01:42

标签: python pandas

我有可变采样率的加速度计数据。我试图通过插值将其恒定采样率提高到50hz.timestamps的问题是它没有毫秒。 enter image description here

如何在不丢失已有数据的情况下做到这一点?

1 个答案:

答案 0 :(得分:0)

您可以先使用df.set_index('timestamp')将索引设置为日期时间列,然后使用df.resample()。您要传递给resample函数的指令是L毫秒,但您可以阅读更多hereresample功能还使您可以选择多种插值模式。