Méthode Pandas Pad

#The .pad() and the .ffill() do the exact same thing and just have different names
#data.resample('W').pad().equals(data.resample('W').ffill()) -----> prints True
df.resample('W').pad()
M.U