Python regularise irregular time series with linear interpolation
问题 I have a time series in pandas that looks like this: Values 1992-08-27 07:46:48 28.0 1992-08-27 08:00:48 28.2 1992-08-27 08:33:48 28.4 1992-08-27 08:43:48 28.8 1992-08-27 08:48:48 29.0 1992-08-27 08:51:48 29.2 1992-08-27 08:53:48 29.6 1992-08-27 08:56:48 29.8 1992-08-27 09:03:48 30.0 I would like to resample it to a regular time series with 15 min times steps where the values are linearly interpolated. Basically I would like to get: Values 1992-08-27 08:00:00 28.2 1992-08-27 08:15:00 28.3