My implementation of various algorithms, in Rust.
Each implemented algorithm contains at least one example.
Examples can be run with the command cargo run --release --example <example>.
The library used for plotting is gnuplot and needs to be installed on the system for the examples that draw plots.
Below is a list of all the algorithms currently implemented in this repository.
KDE is a non-parameteric method for estimating the density over a data distribution. This implementation uses a Gaussian kernel.