I have a dataframe where my index is an elapsed seconds series.
Depth_m | Temperature_degC | Salinity_PSU | OBS S9604_mV | OBS highsens S9604_mV | OBS S9602_mV | OBS S9603_mV | Time elapsed_sec
0.00 | 35.687 | 28.9931 | 36.7530 | 0.0082 | 0.0024 | 0.0059 | 0.0120
0.25 | 35.684 | 28.9932 | 36.7531 | 0.0083 | 0.0026 | 0.0060 | 0.0106
0.50 | 35.687 | 28.9931 | 36.7532 | 0.0079 | 0.0021 | 0.0055 | 0.0099
0.75 | 35.687 | 28.9931 | 36.7532 | 0.0305 | 0.0075 | 0.0056 | 0.0101
I would like to calculate create a new series obtained from a start time and elapsed seconds. I am using python v 2.7 with pandas. Do any of you know how to obtain that? Thanks