pandas.core.resample.Resampler.transform #

最终 重采样器。变换( arg , * args , ** kwargs ) [来源] #

调用函数在每个组上生成相似索引的系列。

返回具有转换值的系列。

参数
参数函数

适用于每个组。应该返回具有相同索引的系列。

返回
系列

例子

>>> s = pd.Series([1, 2],
...               index=pd.date_range('20180101',
...                                   periods=2,
...                                   freq='1h'))
>>> s
2018-01-01 00:00:00    1
2018-01-01 01:00:00    2
Freq: h, dtype: int64
>>> resampled = s.resample('15min')
>>> resampled.transform(lambda x: (x - x.mean()) / x.std())
2018-01-01 00:00:00   NaN
2018-01-01 01:00:00   NaN
Freq: h, dtype: float64