-
Resampler.transform(arg, *args, **kwargs)
[source] -
Call function producing a like-indexed Series on each group and return a Series with the transformed values
Parameters: func : function
To apply to each group. Should return a Series with the same index
Returns: transformed : Series
Examples
1>>> resampled.transform(
lambda
x: (x
-
x.mean())
/
x.std())
Resampler.transform()

2025-01-10 15:47:30
Please login to continue.