inferust 0.1.22

Statistical modeling for Rust - OLS/WLS regression, GLM, survival analysis, ARIMA/VAR, nonparametric tests, and more. A statsmodels-style library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! State-space models and Kalman filtering.
//!
//! This module provides scalar and multivariate linear-Gaussian Kalman filters
//! that underpin exact ARIMA MLE and statsmodels-style state-space workflows.

mod kalman;
mod scalar;

pub use kalman::{KalmanLikelihood, LinearGaussianModel};
pub use scalar::{
    KalmanFilterResult, LocalLevel, LocalLevelResult, ScalarStateSpace,
};