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.
Optional
weights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
Optional
minPeriods: 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.
Optional
center: 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.
Optional
weights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
Optional
minPeriods: 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.
Optional
center: booleanSet the labels at the center of the window
Compute a rolling median
Optional
weights: number[]Optional
minPeriods: number[]Optional
center: 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.
Optional
weights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
Optional
minPeriods: 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.
Optional
center: booleanSet the labels at the center of the window
Compute a rolling quantile
quantile to compute
Optional
interpolation: InterpolationMethodinterpolation type
Optional
windowSize: numberSize of the rolling window
Optional
weights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
Optional
minPeriods: 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.
Optional
center: booleanSet the labels at the center of the window
Optional
by: stringOptional
closed: ClosedWindowCompute a rolling skew
Size of the rolling window
Optional
bias: booleanIf false, then the calculations are corrected for statistical bias.
Compute a rolling skew
options for rolling mean operations
Optional
bias?: 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.
Optional
weights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
Optional
minPeriods: 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.
Optional
center: booleanSet the labels at the center of the window
Optional
ddof: 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.
Optional
weights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
Optional
minPeriods: 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.
Optional
center: 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.
Optional
weights: number[]An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
Optional
minPeriods: 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.
Optional
center: booleanSet the labels at the center of the window
Optional
ddof: 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.