Have you ever used the percentile numpy function when using the pandas function resample??
Considering that "data" is a dataframe with just one column with 10min data, I would like to do something like this:
dataDaily=data.resample('D',how=np.percentile(data['Col1'],q=90)
I got the following error:
'numpy.float64' object is not callable
Have you ever try this?