Los valores faltantes de relleno de reamitual de pandas
#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()