It certainly does. First, you will need to convert the indexes to the pandas date_range format, and then use the custom offset functions available for the / dataframes series indexed by this class. Useful documentation here . Read more about alias offsets.
This code should reconfigure your data at 2.5 second intervals.
#df is your dataframe index = pd.date_range(df['time_stamp']) values = pd.Series(df.values, index=index)
That should do it.
source share