python时间序列进行线性插值_Python pandas时间序列插值日期时间数据

使用pandas库对包含datetime的DataFrame进行时间序列线性插值,通过将间隔设为索引并利用'values'参数进行插值计算,然后将插值结果转换回datetime格式。
摘要由CSDN通过智能技术生成

这似乎有效.可能有点清理代码.但是你得到了它的要点

from datetime import datetime

import pandas as pd

import time

#Create data

df = pd.DataFrame({ 'interval' : [0.782296, 0.795469, 0.821426, 0.834957,

0.864383, 0.906240],

'datetime' : [datetime(2012, 11, 19, 12, 40, 10), pd.NaT,

datetime(2012, 11, 19, 12, 35, 10), pd.NaT,

datetime(2012, 11, 19, 12, 30, 10),

datetime(2012, 11, 19, 12, 25, 10)

]})

#Cast date to seconds (also recast the NaT to Nan)

df['seconds'] = [time.mktime(t.timetuple()) if t is not pd.NaT else float('nan') for t in df['datetime'] ]

#Set the interval as the index, as interpolation uses the index

df.set_index('interval', inplace=True)

#Use the 'values'-argument to actually use the values of the index and not the spacing

df['intepolated'] = df['seconds'].interpolate('v

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值