#We can also use custom functions and apply them when resampling using the .apply(method_name) method
#This is an example used in a downsampling example
def custom_resampler(arraylike):
return np.sum(arraylike) + 5
data.resample('Q').apply(custom_resampler)
#Resample to monthly
df.resample('M').asfreq()