Is it clear what I am doing wrong?
I'm experimenting with pandas HDFStore.select start and stop options and it's not making a difference.
The commands I'm using are:
import pandas as pd
hdf = pd.HDFStore(path % 'results')
len(hdf.select('results',start=15,stop=20))
hoping to get a length of 4 or 5 or however it's counted, but it gives me the whole darn dataframe.
Here is a screenshot: