Pandas Resample füllen fehlende Werte aus
#For forward fill
df.resample('M').ffill()
#For backward fill
df.resample('M').bfill()
M.U
#For forward fill
df.resample('M').ffill()
#For backward fill
df.resample('M').bfill()