pub fn rolling_correlation_parallel<F>(
x: &ArrayView1<'_, F>,
y: &ArrayView1<'_, F>,
windowsize: usize,
method: &str,
config: &ParallelCorrelationConfig,
) -> StatsResult<Array1<F>>
Expand description
Rolling correlation computation with parallel processing
Computes rolling correlations between two time series using parallel processing for multiple windows.