anofox-regression 0.5.9

A robust statistics library for regression analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
//! Recursive Least Squares solver.

use crate::core::{
    IntervalType, PredictionResult, RegressionOptions, RegressionOptionsBuilder, RegressionResult,
};
use crate::inference::compute_prediction_intervals;
use crate::solvers::traits::{FittedRegressor, RegressionError, Regressor};
use faer::{Col, Mat};
use statrs::distribution::{ContinuousCDF, FisherSnedecor};

/// Recursive Least Squares regression estimator.
///
/// RLS is an online learning algorithm that updates coefficients incrementally
/// as new observations arrive. It uses a forgetting factor (λ) to weight
/// recent observations more heavily.
///
/// The update equations are:
/// - P = (1/λ) * (P - P*x*x'*P / (λ + x'*P*x))
/// - K = P*x / (λ + x'*P*x)  (Kalman gain)
/// - β = β + K*(y - x'*β)
///
/// When λ = 1, all observations are weighted equally (converges to batch OLS).
/// When λ < 1, recent observations have more influence.
///
/// # Example
///
/// ```rust,ignore
/// use statistics::solvers::{RlsRegressor, Regressor, FittedRegressor};
/// use faer::{Mat, Col};
///
/// let x = Mat::from_fn(100, 2, |i, j| (i + j) as f64);
/// let y = Col::from_fn(100, |i| 1.0 + 2.0 * i as f64);
///
/// let fitted = RlsRegressor::builder()
///     .with_intercept(true)
///     .forgetting_factor(0.99)  // Recent data weighted more
///     .build()
///     .fit(&x, &y)?;
///
/// println!("R² = {}", fitted.r_squared());
/// ```
#[derive(Debug, Clone)]
pub struct RlsRegressor {
    options: RegressionOptions,
}

impl RlsRegressor {
    /// Create a new RLS regressor with the given options.
    pub fn new(options: RegressionOptions) -> Self {
        Self { options }
    }

    /// Create a builder for configuring the regressor.
    pub fn builder() -> RlsRegressorBuilder {
        RlsRegressorBuilder::default()
    }
}

impl Regressor for RlsRegressor {
    type Fitted = FittedRls;

    fn fit(&self, x: &Mat<f64>, y: &Col<f64>) -> Result<Self::Fitted, RegressionError> {
        let n_samples = x.nrows();
        let n_features = x.ncols();

        // Validate dimensions
        if x.nrows() != y.nrows() {
            return Err(RegressionError::DimensionMismatch {
                x_rows: x.nrows(),
                y_len: y.nrows(),
            });
        }

        if n_samples < 2 {
            return Err(RegressionError::InsufficientObservations {
                needed: 2,
                got: n_samples,
            });
        }

        let forgetting_factor = self.options.forgetting_factor;
        let n_params = if self.options.with_intercept {
            n_features + 1
        } else {
            n_features
        };

        // Initialize P matrix (inverse covariance) with large diagonal
        let init_scale = 1e6;
        let mut p = Mat::zeros(n_params, n_params);
        for i in 0..n_params {
            p[(i, i)] = init_scale;
        }

        // Initialize coefficients to zero
        let mut beta = Col::zeros(n_params);

        // Process each observation
        for i in 0..n_samples {
            // Build augmented feature vector
            let mut xi = Col::zeros(n_params);
            if self.options.with_intercept {
                xi[0] = 1.0;
                for j in 0..n_features {
                    xi[j + 1] = x[(i, j)];
                }
            } else {
                for j in 0..n_features {
                    xi[j] = x[(i, j)];
                }
            }

            // Compute prediction error
            let y_pred: f64 = xi.iter().zip(beta.iter()).map(|(&x, &b)| x * b).sum();
            let error = y[i] - y_pred;

            // Compute P * x
            let mut px: Col<f64> = Col::zeros(n_params);
            for j in 0..n_params {
                for k in 0..n_params {
                    px[j] += p[(j, k)] * xi[k];
                }
            }

            // Compute x' * P * x
            let xpx: f64 = (0..n_params).map(|j| xi[j] * px[j]).sum();

            // Compute gain: K = P*x / (λ + x'*P*x)
            let denom = forgetting_factor + xpx;
            let mut k: Col<f64> = Col::zeros(n_params);
            for j in 0..n_params {
                k[j] = px[j] / denom;
            }

            // Update coefficients: β = β + K * error
            for j in 0..n_params {
                let k_j: f64 = k[j];
                beta[j] += k_j * error;
            }

            // Update P matrix: P = (1/λ) * (P - K * x' * P)
            // Equivalent to: P = (1/λ) * (P - P*x*x'*P / (λ + x'*P*x))
            let mut p_new: Mat<f64> = Mat::zeros(n_params, n_params);
            for j in 0..n_params {
                for l in 0..n_params {
                    let k_j: f64 = k[j];
                    let px_l: f64 = px[l];
                    p_new[(j, l)] = (p[(j, l)] - k_j * px_l) / forgetting_factor;
                }
            }
            p = p_new;
        }

        // Extract intercept and coefficients
        let (intercept, coefficients) = if self.options.with_intercept {
            let intercept = Some(beta[0]);
            let mut coef = Col::zeros(n_features);
            for j in 0..n_features {
                coef[j] = beta[j + 1];
            }
            (intercept, coef)
        } else {
            let mut coef = Col::zeros(n_features);
            for j in 0..n_features {
                coef[j] = beta[j];
            }
            (None, coef)
        };

        // Compute fitted values and residuals
        let mut fitted_values = Col::zeros(n_samples);
        let mut residuals = Col::zeros(n_samples);

        for i in 0..n_samples {
            let mut pred = intercept.unwrap_or(0.0);
            for j in 0..n_features {
                pred += x[(i, j)] * coefficients[j];
            }
            fitted_values[i] = pred;
            residuals[i] = y[i] - pred;
        }

        // Compute statistics
        let aliased = vec![false; n_features];
        let rank = n_features;
        let n_params_actual = if self.options.with_intercept {
            n_features + 1
        } else {
            n_features
        };

        let result = self.compute_statistics(
            y,
            &coefficients,
            intercept,
            &residuals,
            &fitted_values,
            &aliased,
            rank,
            n_params_actual,
            n_features,
        )?;

        Ok(FittedRls {
            options: self.options.clone(),
            p_matrix: p,
            result,
        })
    }
}

impl RlsRegressor {
    /// Compute fit statistics.
    #[allow(clippy::too_many_arguments)]
    fn compute_statistics(
        &self,
        y: &Col<f64>,
        coefficients: &Col<f64>,
        intercept: Option<f64>,
        residuals: &Col<f64>,
        fitted_values: &Col<f64>,
        aliased: &[bool],
        rank: usize,
        n_params: usize,
        n_features: usize,
    ) -> Result<RegressionResult, RegressionError> {
        let n = y.nrows();

        // Compute y mean
        let y_mean: f64 = y.iter().sum::<f64>() / n as f64;

        // Compute TSS
        let tss: f64 = y.iter().map(|&yi| (yi - y_mean).powi(2)).sum();

        // Compute RSS
        let rss: f64 = residuals.iter().map(|&r| r.powi(2)).sum();

        // R-squared
        let r_squared = if tss > 0.0 {
            (1.0 - rss / tss).clamp(0.0, 1.0)
        } else if rss < 1e-10 {
            1.0
        } else {
            0.0
        };

        // Adjusted R-squared
        let df_total = (n - 1) as f64;
        let df_resid = (n - n_params) as f64;
        let adj_r_squared = if df_resid > 0.0 && df_total > 0.0 {
            1.0 - (1.0 - r_squared) * df_total / df_resid
        } else {
            f64::NAN
        };

        // MSE and RMSE
        let mse = if df_resid > 0.0 {
            rss / df_resid
        } else {
            f64::NAN
        };
        let rmse = mse.sqrt();

        // F-statistic
        let ess = tss - rss;
        let df_model = (n_params - if intercept.is_some() { 1 } else { 0 }) as f64;
        let f_statistic = if df_model > 0.0 && df_resid > 0.0 && mse > 0.0 {
            (ess / df_model) / mse
        } else {
            f64::NAN
        };

        let f_pvalue = if f_statistic.is_finite() && df_model > 0.0 && df_resid > 0.0 {
            FisherSnedecor::new(df_model, df_resid)
                .ok()
                .map_or(f64::NAN, |d| 1.0 - d.cdf(f_statistic))
        } else {
            f64::NAN
        };

        // Information criteria
        let log_likelihood = if mse > 0.0 {
            -0.5 * n as f64 * (1.0 + (2.0 * std::f64::consts::PI).ln() + mse.ln())
        } else {
            f64::NAN
        };

        let k = n_params as f64;
        let aic = if log_likelihood.is_finite() {
            2.0 * k - 2.0 * log_likelihood
        } else {
            f64::NAN
        };

        let aicc = if log_likelihood.is_finite() && (n as f64 - k - 1.0) > 0.0 {
            aic + 2.0 * k * (k + 1.0) / (n as f64 - k - 1.0)
        } else {
            f64::NAN
        };

        let bic = if log_likelihood.is_finite() {
            k * (n as f64).ln() - 2.0 * log_likelihood
        } else {
            f64::NAN
        };

        let mut result = RegressionResult::empty(n_features, n);
        result.coefficients = coefficients.clone();
        result.intercept = intercept;
        result.residuals = residuals.clone();
        result.fitted_values = fitted_values.clone();
        result.rank = rank;
        result.n_parameters = n_params;
        result.n_observations = n;
        result.aliased = aliased.to_vec();
        result.rank_tolerance = self.options.rank_tolerance;
        result.r_squared = r_squared;
        result.adj_r_squared = adj_r_squared;
        result.mse = mse;
        result.rmse = rmse;
        result.f_statistic = f_statistic;
        result.f_pvalue = f_pvalue;
        result.aic = aic;
        result.aicc = aicc;
        result.bic = bic;
        result.log_likelihood = log_likelihood;
        result.confidence_level = self.options.confidence_level;

        // Note: RLS doesn't provide standard errors in the same way as OLS
        // The P matrix can be used, but interpretation differs

        Ok(result)
    }
}

/// Fitted Recursive Least Squares (RLS) model for online learning.
///
/// Contains the estimated coefficients and covariance matrix (P) from fitting
/// an RLS model. Supports incremental updates with new observations.
///
/// # Online Learning
///
/// RLS is designed for streaming data where the model is updated incrementally
/// as new observations arrive. The forgetting factor controls how much weight
/// is given to recent vs. older observations.
///
/// # Available Methods
///
/// - [`predict`](FittedRegressor::predict) - Predict response values
/// - [`update`](Self::update) - Update model with new observation (online learning)
/// - [`p_matrix`](Self::p_matrix) - Get the inverse covariance estimate
/// - [`forgetting_factor`](Self::forgetting_factor) - Get the forgetting factor
///
/// # Example
///
/// ```rust,ignore
/// use anofox_regression::prelude::*;
///
/// let x = Mat::from_fn(100, 2, |i, j| (i + j) as f64 / 10.0);
/// let y = Col::from_fn(100, |i| i as f64 + 1.0);
///
/// let mut fitted = RlsRegressor::builder()
///     .with_intercept(true)
///     .forgetting_factor(0.99)
///     .build()
///     .fit(&x, &y)?;
///
/// // Online update with new observation
/// let x_new = Col::from_fn(2, |j| j as f64);
/// let y_new = 5.0;
/// let prediction = fitted.update(&x_new, y_new);
///
/// // Coefficients are now updated
/// let coefs = fitted.coefficients();
/// ```
#[derive(Debug, Clone)]
pub struct FittedRls {
    options: RegressionOptions,
    /// The P matrix (inverse covariance estimate) after fitting.
    p_matrix: Mat<f64>,
    result: RegressionResult,
}

impl FittedRls {
    /// Get the options used to fit this model.
    pub fn options(&self) -> &RegressionOptions {
        &self.options
    }

    /// Get the forgetting factor used.
    pub fn forgetting_factor(&self) -> f64 {
        self.options.forgetting_factor
    }

    /// Get the P matrix (inverse covariance estimate).
    pub fn p_matrix(&self) -> &Mat<f64> {
        &self.p_matrix
    }

    /// Update the model with a new observation (online learning).
    ///
    /// Returns the prediction for the new observation before updating.
    pub fn update(&mut self, x_new: &Col<f64>, y_new: f64) -> f64 {
        let n_features = self.result.coefficients.nrows();
        let n_params = self.p_matrix.nrows();
        let forgetting_factor = self.options.forgetting_factor;

        // Build augmented feature vector
        let mut xi = Col::zeros(n_params);
        if self.options.with_intercept {
            xi[0] = 1.0;
            for j in 0..n_features {
                xi[j + 1] = x_new[j];
            }
        } else {
            for j in 0..n_features {
                xi[j] = x_new[j];
            }
        }

        // Get current coefficients as augmented vector
        let mut beta = Col::zeros(n_params);
        if self.options.with_intercept {
            beta[0] = self.result.intercept.unwrap_or(0.0);
            for j in 0..n_features {
                beta[j + 1] = self.result.coefficients[j];
            }
        } else {
            for j in 0..n_features {
                beta[j] = self.result.coefficients[j];
            }
        }

        // Compute prediction before update
        let y_pred: f64 = xi.iter().zip(beta.iter()).map(|(&x, &b)| x * b).sum();
        let error = y_new - y_pred;

        // Compute P * x
        let mut px: Col<f64> = Col::zeros(n_params);
        for j in 0..n_params {
            for k in 0..n_params {
                px[j] += self.p_matrix[(j, k)] * xi[k];
            }
        }

        // Compute x' * P * x
        let xpx: f64 = (0..n_params).map(|j| xi[j] * px[j]).sum();

        // Compute gain
        let denom = forgetting_factor + xpx;
        let mut k: Col<f64> = Col::zeros(n_params);
        for j in 0..n_params {
            k[j] = px[j] / denom;
        }

        // Update coefficients
        for j in 0..n_params {
            let k_j: f64 = k[j];
            beta[j] += k_j * error;
        }

        // Update P matrix
        let mut p_new: Mat<f64> = Mat::zeros(n_params, n_params);
        for j in 0..n_params {
            for l in 0..n_params {
                let k_j: f64 = k[j];
                let px_l: f64 = px[l];
                p_new[(j, l)] = (self.p_matrix[(j, l)] - k_j * px_l) / forgetting_factor;
            }
        }
        self.p_matrix = p_new;

        // Store updated coefficients
        if self.options.with_intercept {
            self.result.intercept = Some(beta[0]);
            for j in 0..n_features {
                self.result.coefficients[j] = beta[j + 1];
            }
        } else {
            for j in 0..n_features {
                self.result.coefficients[j] = beta[j];
            }
        }

        y_pred
    }
}

impl FittedRegressor for FittedRls {
    fn predict(&self, x: &Mat<f64>) -> Col<f64> {
        let n_samples = x.nrows();
        let n_features = x.ncols();
        let mut predictions = Col::zeros(n_samples);

        let intercept = self.result.intercept.unwrap_or(0.0);

        for i in 0..n_samples {
            let mut pred = intercept;
            for j in 0..n_features {
                pred += x[(i, j)] * self.result.coefficients[j];
            }
            predictions[i] = pred;
        }

        predictions
    }

    fn result(&self) -> &RegressionResult {
        &self.result
    }

    fn predict_with_interval(
        &self,
        x: &Mat<f64>,
        interval: Option<IntervalType>,
        level: f64,
    ) -> PredictionResult {
        let predictions = self.predict(x);

        match interval {
            None => PredictionResult::point_only(predictions),
            Some(interval_type) => {
                // RLS stores p_matrix which is the estimate of (X'X)^-1
                // Note: For RLS, this is already augmented if with_intercept=true
                let df = self.result.residual_df() as f64;
                let has_intercept = self.result.intercept.is_some();

                compute_prediction_intervals(
                    x,
                    &self.p_matrix,
                    &predictions,
                    self.result.mse,
                    df,
                    level,
                    interval_type,
                    has_intercept,
                )
            }
        }
    }
}

/// Builder for configuring a Recursive Least Squares model.
///
/// Provides a fluent API for setting RLS-specific options like the
/// forgetting factor for exponential weighting.
///
/// # Example
///
/// ```rust,ignore
/// use anofox_regression::prelude::*;
///
/// // Standard RLS (all observations equally weighted)
/// let model = RlsRegressor::builder()
///     .with_intercept(true)
///     .forgetting_factor(1.0)
///     .build();
///
/// // Exponentially weighted RLS (recent observations weighted more)
/// let model = RlsRegressor::builder()
///     .with_intercept(true)
///     .forgetting_factor(0.95)  // 5% discount per observation
///     .initial_p_scale(100.0)   // Initial P matrix = 100 * I
///     .build();
/// ```
#[derive(Debug, Clone, Default)]
pub struct RlsRegressorBuilder {
    builder: RegressionOptionsBuilder,
}

impl RlsRegressorBuilder {
    /// Create a new builder with default options.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set whether to include an intercept term.
    pub fn with_intercept(mut self, include: bool) -> Self {
        self.builder = self.builder.with_intercept(include);
        self
    }

    /// Set the forgetting factor (0 < λ ≤ 1).
    ///
    /// - λ = 1: All observations weighted equally (standard RLS)
    /// - λ < 1: Recent observations weighted more heavily
    pub fn forgetting_factor(mut self, factor: f64) -> Self {
        self.builder = self.builder.forgetting_factor(factor);
        self
    }

    /// Build the RLS regressor.
    pub fn build(self) -> RlsRegressor {
        RlsRegressor::new(self.builder.build_unchecked())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::solvers::ols::OlsRegressor;

    #[test]
    fn test_rls_converges_to_ols() {
        // With forgetting_factor = 1, RLS should converge to batch OLS
        let x = Mat::from_fn(50, 1, |i, _| i as f64);
        let y = Col::from_fn(50, |i| 2.0 + 3.0 * i as f64);

        let rls = RlsRegressor::builder()
            .with_intercept(true)
            .forgetting_factor(1.0)
            .build();
        let ols = OlsRegressor::builder().with_intercept(true).build();

        let rls_fit = rls.fit(&x, &y).expect("RLS model should fit");
        let ols_fit = ols.fit(&x, &y).expect("OLS model should fit");

        // Should be close (not exact due to initialization)
        assert!(
            (rls_fit.coefficients()[0] - ols_fit.coefficients()[0]).abs() < 0.1,
            "RLS coef: {}, OLS coef: {}",
            rls_fit.coefficients()[0],
            ols_fit.coefficients()[0]
        );
    }

    #[test]
    fn test_rls_basic() {
        let x = Mat::from_fn(30, 1, |i, _| i as f64);
        let y = Col::from_fn(30, |i| 1.0 + 2.0 * i as f64);

        let model = RlsRegressor::builder()
            .with_intercept(true)
            .forgetting_factor(0.99)
            .build();

        let fitted = model.fit(&x, &y).expect("model should fit");

        assert!(fitted.r_squared() > 0.9);
    }

    #[test]
    fn test_rls_online_update() {
        let x = Mat::from_fn(20, 1, |i, _| i as f64);
        let y = Col::from_fn(20, |i| 1.0 + 2.0 * i as f64);

        let model = RlsRegressor::builder()
            .with_intercept(true)
            .forgetting_factor(1.0)
            .build();

        let mut fitted = model.fit(&x, &y).expect("model should fit");

        // Update with a new observation
        let x_new = Col::from_fn(1, |_| 20.0);
        let y_new = 1.0 + 2.0 * 20.0;

        let pred_before = fitted.update(&x_new, y_new);

        // Prediction should be close to actual
        assert!(
            (pred_before - y_new).abs() < 1.0,
            "Prediction {} should be close to {}",
            pred_before,
            y_new
        );
    }
}