Rust library for solving linear, logistic, and generalized linear models through
iteratively reweighted least squares, using the
ndarray-linalg
module.
This package is in early alpha and the interface is likely to undergo many changes. Functionality may change from one release to the next.
The regression algorithm uses iteratively re-weighted least squares (IRLS) with a step-halving procedure applied when the next iteration of guesses does not increase the likelihood.
Much of the logic is done at the type/trait level to avoid compiling code a user does not need and to allow general implementations that the compiler can optimize in trivial cases.
fortran and BLAS must be installed:
sudo apt update && sudo apt install gfortran libblas-dev
To use the OpenBLAS backend, install also libopenblas-dev
and use this crate with the
"openblas-static" feature.
To use in your crate, add the following to the Cargo.toml
:
ndarray = { version = "0.13", features = ["blas"]}
ndarray-glm = { version = "0.0.7", features = ["openblas-static"] }
An example for linear regression is shown below.
``` rust use ndarray_glm::{array, Linear, ModelBuilder, standardize};
// define some test data
let datay = array![0.3, 1.3, 0.7];
let datax = array![[0.1, 0.2], [-0.4, 0.1], [0.2, 0.4]];
// The design matrix can optionally be standardized, where the mean of each independent
// variable is subtracted and each is then divided by the standard deviation of that variable.
let datax = standardize(datax);
// The interface takes ArrayView
s to allow for efficient passing of slices.
let model = ModelBuilder::
For logistic regression, the y
array data must be boolean, and for Poisson
regression it must be an unsigned integer.
Custom non-canonical link functions can be defined by the user, although the
interface is not particularly ergonomic. See tests/custom_link.rs
for examples.
These notes on generalized linear models summarize many of the relevant concepts and provide some additional references.