Apply a rolling max (moving max) over the values in this Series.
A window of length window_size will traverse the series. The values that fill this window
will (optionally) be multiplied with the weights given by the weight vector.
The resulting parameters' values will be aggregated into their sum.
The length of the window.
Optionalweights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
OptionalminPeriods: number[]The number of values in the window that should be non-null before computing a result. If undefined, it will be set equal to window size.
Optionalcenter: booleanSet the labels at the center of the window
Apply a rolling mean (moving mean) over the values in this Series.
A window of length window_size will traverse the series. The values that fill this window
will (optionally) be multiplied with the weights given by the weight vector.
The resulting parameters' values will be aggregated into their sum.
The length of the window.
Optionalweights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
OptionalminPeriods: number[]The number of values in the window that should be non-null before computing a result. If undefined, it will be set equal to window size.
Optionalcenter: booleanSet the labels at the center of the window
Compute a rolling median
Optionalweights: number[]OptionalminPeriods: number[]Optionalcenter: booleanApply a rolling min (moving min) over the values in this Series.
A window of length window_size will traverse the series. The values that fill this window
will (optionally) be multiplied with the weights given by the weight vector.
The resulting parameters' values will be aggregated into their sum.
The length of the window.
Optionalweights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
OptionalminPeriods: number[]The number of values in the window that should be non-null before computing a result. If undefined, it will be set equal to window size.
Optionalcenter: booleanSet the labels at the center of the window
Compute a rolling quantile
quantile to compute
Optionalinterpolation: InterpolationMethodinterpolation type
OptionalwindowSize: numberSize of the rolling window
Optionalweights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
OptionalminPeriods: number[]The number of values in the window that should be non-null before computing a result. If undefined, it will be set equal to window size.
Optionalcenter: booleanSet the labels at the center of the window
Optionalby: stringOptionalclosed: ClosedWindowCompute a rolling skew
Size of the rolling window
Optionalbias: booleanIf false, then the calculations are corrected for statistical bias.
Compute a rolling skew
options for rolling mean operations
Optionalbias?: booleanCompute a rolling std dev
A window of length window_size will traverse the array. The values that fill this window
will (optionally) be multiplied with the weights given by the weight vector. The resulting
values will be aggregated to their sum.
The length of the window.
Optionalweights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
OptionalminPeriods: number[]The number of values in the window that should be non-null before computing a result. If undefined, it will be set equal to window size.
Optionalcenter: booleanSet the labels at the center of the window
Optionalddof: number"Delta Degrees of Freedom”: the divisor used in the calculation is N - ddof, where N represents the number of elements. By default ddof is 1.
Apply a rolling sum (moving sum) over the values in this Series.
A window of length window_size will traverse the series. The values that fill this window
will (optionally) be multiplied with the weights given by the weight vector.
The resulting parameters' values will be aggregated into their sum.
The length of the window.
Optionalweights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
OptionalminPeriods: number[]The number of values in the window that should be non-null before computing a result. If undefined, it will be set equal to window size.
Optionalcenter: booleanSet the labels at the center of the window
Compute a rolling variance.
A window of length window_size will traverse the series. The values that fill this window
will (optionally) be multiplied with the weights given by the weight vector.
The resulting parameters' values will be aggregated into their sum.
The length of the window.
Optionalweights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
OptionalminPeriods: number[]The number of values in the window that should be non-null before computing a result. If undefined, it will be set equal to window size.
Optionalcenter: booleanSet the labels at the center of the window
Optionalddof: number"Delta Degrees of Freedom”: the divisor used in the calculation is N - ddof, where N represents the number of elements. By default ddof is 1.
A trait for DataFrame and Series that allows for the application of a rolling window.