蓝绝

博客园 首页 新随笔 联系 订阅 管理

 

import pandas as pd 
index=pd.date_range('2020-1-1',periods=2) 
s=pd.Series(range(1,3),index=index) 
#升采样
#s.resample('6H').asfreq()
#使用前值填充
#s.resample('6H').ffill()
#使用后值填充
s.resample('6H').bfill()
2020-01-01 00:00:00    1
2020-01-01 06:00:00    2
2020-01-01 12:00:00    2
2020-01-01 18:00:00    2
2020-01-02 00:00:00    2
Freq: 6H, dtype: int64

 

posted on 2022-11-27 12:47  蓝绝  阅读(18)  评论(0编辑  收藏  举报