I am creating a subset of a dataframe like this:
dist = df['distance'][23:42]
The start index of the result I am getting is then 23, but i want to start the series at index 0.
How can I tell Python to create new indices for my subset and not reuse the ones from the initial dataframe?