pandas.DataFrame.interpolate() 中的插值方法无法正确插值或外推时间序列数据

问题描述 投票:0回答:2

我在 pandas.DataFrame.interpolate() 中执行插值方法时遇到问题。我有一个时间序列数据示例,每个数据点相距约 2 分钟。我正在尝试将数据重新采样为恰好间隔 2 分钟,以便稍后与其他数据同步。问题是,根据我的理解,温度和湿度值的插值不正确。我尝试了不同的方法,如插值(方法='时间'),插值(方法='线性')和插值(方法='索引'),但它们给出了相似的结果。请问我对 pandas 中的这个方法做了什么或者理解不正确吗?

import pandas as pd
import numpy as np

# Generating random data
np.random.seed(0)
num_rows = 20
data = {
    'temperature': np.random.randint(20, 30, num_rows),
    'humidity': np.random.randint(40, 60, num_rows)
}
print(data)
# Generating random time indices
# Generating random time offsets for each row
time_offsets = np.random.randint(0, 120, num_rows)
time_offsets = pd.to_timedelta(time_offsets, unit='s')

# Generating random start and end times
start_time = pd.Timestamp('2024-02-24 9:55:37')
end_time = pd.Timestamp('2024-02-24 11:00:00')

# Generating time indices for each row
time_indices = [start_time + pd.Timedelta(minutes=2*i) + offset for i, offset in enumerate(time_offsets)]

print(time_indices)
# Creating DataFrame
combined_data = pd.DataFrame(data, index=time_indices)

print("Random DataFrame:")
print(combined_data)


# Resample the data to 2-minute frequency
resampled_data = combined_data.resample('2min').interpolate(method='time')


print("\nResampled DataFrame:")
print(resampled_data)

以下是我得到的结果。插值数据帧会重复某些行,然后输出不同的平均数据值,这与我的手工计算完全不相似。

Random DataFrame:
                     temperature  humidity
2024-02-24 09:56:00           25        45
2024-02-24 09:57:46           20        53
2024-02-24 10:00:34           23        48
2024-02-24 10:02:09           23        49
2024-02-24 10:04:08           27        59
2024-02-24 10:06:51           29        56
2024-02-24 10:09:33           23        59
2024-02-24 10:10:00           25        45
2024-02-24 10:12:12           22        55
2024-02-24 10:14:52           24        55
2024-02-24 10:17:31           27        40
2024-02-24 10:18:32           26        58
2024-02-24 10:20:05           28        43
2024-02-24 10:22:11           28        57
2024-02-24 10:23:37           21        59
2024-02-24 10:25:37           26        59
2024-02-24 10:28:13           27        59
2024-02-24 10:30:30           27        54
2024-02-24 10:31:42           28        47
2024-02-24 10:34:00           21        40

Resampled DataFrame:
                     temperature   humidity
2024-02-24 09:56:00    25.000000  45.000000
2024-02-24 09:58:00    25.000000  45.000000
2024-02-24 10:00:00    25.000000  45.000000
2024-02-24 10:02:00    25.000000  45.000000
2024-02-24 10:04:00    25.000000  45.000000
2024-02-24 10:06:00    25.000000  45.000000
2024-02-24 10:08:00    25.000000  45.000000
2024-02-24 10:10:00    25.000000  45.000000
2024-02-24 10:12:00    24.666667  44.583333
2024-02-24 10:14:00    24.333333  44.166667
2024-02-24 10:16:00    24.000000  43.750000
2024-02-24 10:18:00    23.666667  43.333333
2024-02-24 10:20:00    23.333333  42.916667
2024-02-24 10:22:00    23.000000  42.500000
2024-02-24 10:24:00    22.666667  42.083333
2024-02-24 10:26:00    22.333333  41.666667
2024-02-24 10:28:00    22.000000  41.250000
2024-02-24 10:30:00    21.666667  40.833333
2024-02-24 10:32:00    21.333333  40.416667
2024-02-24 10:34:00    21.000000  40.000000

非常感谢!

我在pandas的插值方法中尝试了不同的方法。我希望根据时间戳正确内插或外推温度和湿度值。

python pandas time-series interpolation pandas-resample
2个回答
0
投票

我会考虑使用平均值重新采样温度,如下所示:

import numpy as np
import pandas as pd


np.random.seed(0)  
num_rows = 20
data = {
    'temperature': np.random.randint(20, 30, num_rows),
    'humidity': np.random.randint(40, 60, num_rows)
}
time_offsets = np.random.randint(0, 120, num_rows) 
time_offsets = pd.to_timedelta(time_offsets, unit='s')
start_time = pd.Timestamp('2024-02-24 9:55:37')
time_indices = [start_time + pd.Timedelta(minutes=2*i) + offset for i, offset in enumerate(time_offsets)]

combined_data = pd.DataFrame(data, index=time_indices)

resampled_data = combined_data.resample('2min').mean() 
interpolated_data = resampled_data.interpolate(method='time')

combined_data, resampled_data.head(10), interpolated_data.head(10) 

这给了你

(                     temperature  humidity
 2024-02-24 09:56:42           25        45
 2024-02-24 09:57:46           20        53
 2024-02-24 10:00:34           23        48
 2024-02-24 10:02:09           23        49
 2024-02-24 10:04:08           27        59
 2024-02-24 10:06:51           29        56
 2024-02-24 10:09:33           23        59
 2024-02-24 10:10:00           25        45
 2024-02-24 10:12:12           22        55
 2024-02-24 10:14:52           24        55
 2024-02-24 10:17:31           27        40
 2024-02-24 10:18:32           26        58
 2024-02-24 10:20:05           28        43
 2024-02-24 10:22:11           28        57
 2024-02-24 10:23:37           21        59
 2024-02-24 10:25:37           26        59
 2024-02-24 10:28:13           27        59
 2024-02-24 10:30:30           27        54
 2024-02-24 10:31:42           28        47
 2024-02-24 10:34:15           21        40,
                      temperature  humidity
 2024-02-24 09:56:00         22.5      49.0
 2024-02-24 09:58:00          NaN       NaN
 2024-02-24 10:00:00         23.0      48.0
 2024-02-24 10:02:00         23.0      49.0
 2024-02-24 10:04:00         27.0      59.0
 2024-02-24 10:06:00         29.0      56.0
 2024-02-24 10:08:00         23.0      59.0
 2024-02-24 10:10:00         25.0      45.0
 2024-02-24 10:12:00         22.0      55.0
 2024-02-24 10:14:00         24.0      55.0,
                      temperature  humidity
 2024-02-24 09:56:00        22.50      49.0
 2024-02-24 09:58:00        22.75      48.5
 2024-02-24 10:00:00        23.00      48.0
 2024-02-24 10:02:00        23.00      49.0
 2024-02-24 10:04:00        27.00      59.0
 2024-02-24 10:06:00        29.00      56.0
 2024-02-24 10:08:00        23.00      59.0
 2024-02-24 10:10:00        25.00      45.0
 2024-02-24 10:12:00        22.00      55.0
 2024-02-24 10:14:00        24.00      55.0)

0
投票
# From OP
resampled_data = combined_data.resample('2min').interpolate(method='time')

这将插入同一 2 分钟内的值。

IIUC,你想要的是重新采样并获取这些值的平均值(或第一个,最后一个?),然后插值:

resampled_data = combined_data.resample("2min").mean().interpolate("linear")
Resampled DataFrame:
                     temperature  humidity
2024-02-24 09:56:00        22.50     49.00
2024-02-24 09:58:00        22.75     48.50
2024-02-24 10:00:00        23.00     48.00
2024-02-24 10:02:00        23.00     49.00
2024-02-24 10:04:00        27.00     59.00
2024-02-24 10:06:00        29.00     56.00
2024-02-24 10:08:00        23.00     59.00
2024-02-24 10:10:00        25.00     45.00
2024-02-24 10:12:00        22.00     55.00
2024-02-24 10:14:00        24.00     55.00
2024-02-24 10:16:00        27.00     40.00
2024-02-24 10:18:00        26.00     58.00
2024-02-24 10:20:00        28.00     43.00
2024-02-24 10:22:00        24.50     58.00
2024-02-24 10:24:00        26.00     59.00
2024-02-24 10:26:00        26.50     59.00
2024-02-24 10:28:00        27.00     59.00
2024-02-24 10:30:00        27.50     50.50
2024-02-24 10:32:00        24.25     45.25
2024-02-24 10:34:00        21.00     40.00
© www.soinside.com 2019 - 2024. All rights reserved.