I have timestamped sensor data. Because of technical details, I get data from the sensors at approximately one minute intervals. The data may look like this:
d = df.set_index('tstamp') t = d.index r = pd.date_range(t.min().date(), periods=24*60, freq='T') d.reindex(t.union(r)).interpolate('index').ix[r]
Note, periods=24*60 works on daily data, not on the sample provided in the question. For that sample, periods=6 will work.
periods=24*60
periods=6