如果index是时间序列就不用转datetime;但是如果时间序列是表中的某一列,可以把这一列设为index
例如:
代码:
1
2
3
4
5
|
DF = df2.set_index(df1[ 'time_slot1' ])
DF.index = pd.to_datetime(DF.index,unit = 'ns' )
ticket = DF.ix[:,[ 'all_time' ]]
#以20分钟为一个时间间隔,求出所有间隔的平均时间
A_2analysisResult = ticket.all_time.resample( '20min' ).mean()
|
结果:
以上这篇pandas基于时间序列的固定时间间隔求均值的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_36076233/article/details/66968727