On this page
pandas.core.resample.Resampler.transform
Resampler.transform(self, arg, *args, **kwargs)
[source]-
Call function producing a like-indexed Series on each group and return a Series with the transformed values.
Parameters: -
arg : function
-
To apply to each group. Should return a Series with the same index.
Returns: -
transformed : Series
Examples
>>> resampled.transform(lambda x: (x - x.mean()) / x.std())
-
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.25.0/reference/api/pandas.core.resample.Resampler.transform.html