如何在 Pandas V17 中复制 rolling.sum()

How can I replicate rolling.sum() in Pandas V17

我正在尝试计算以下数据的滚动 3 天总和:

Date        Qty
01/01/2019  4.15
02/01/2019  12.39
03/01/2019  14.15
04/01/2019  12.15
05/01/2019  3.26
06/01/2019  6.23
07/01/2019  15.89
08/01/2019  5.55
09/01/2019  12.49
10/01/2019  9.4
11/01/2019  9.11
12/01/2019  9.18
13/01/2019  13.45
14/01/2019  4.52

我试过了:

data['Rolling_3_day'] = data['Qty'].rolling(3).sum()

但我收到以下错误:

AttributeError: 'Series' object has no attribute 'rolling'

我认为问题是为 Pandas V18 添加了 .rolling,但我有 Pandas V17。但我现在无法更新 pandas。 有什么方法可以使用 V17 计算滚动总和吗?

对于小window,可以shift:

df['rolling_3d'] = np.sum([df['Qty'].shift(i) for i in range(3)], axis=0)