polars.rolling_corr#
- polars.rolling_corr( ) Expr[source]#
 Compute the rolling correlation between two columns/ expressions.
The window at a given row includes the row itself and the
window_size - 1elements before it.- Parameters:
 - a
 Column name or Expression.
- b
 Column name or Expression.
- window_size
 The length of the window.
- min_periods
 The number of values in the window that should be non-null before computing a result. If None, it will be set equal to window size.
- ddof
 Delta degrees of freedom. The divisor used in calculations is
N - ddof, whereNrepresents the number of elements.