📜  pandas resample 填充缺失值 - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:16.531000             🧑  作者: Mango
代码示例1
#For forward fill
df.resample('M').ffill()
#For backward fill
df.resample('M').bfill()