Resample Pandas mengisi nilai yang hilang

#For forward fill
df.resample('M').ffill()
#For backward fill
df.resample('M').bfill()
M.U