featrs 0.3.2

Feature engineering library for Rust, inspired by scikit-learn
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Feature selection transformers.
//!
//! Analogous to `sklearn.feature_selection`. Reduce the number of features
//! by removing low-variance columns or selecting the top-k features according
//! to a statistical test.

pub mod select_kbest;
pub mod variance_threshold;

pub use select_kbest::SelectKBest;
pub use variance_threshold::VarianceThreshold;