featrs 0.1.0

Feature engineering library for Rust, inspired by scikit-learn
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Data preprocessing transformations.
//!
//! Analogous to `sklearn.preprocessing`. Each sub-module provides a transformer
//! that implements [`Fit`](crate::traits::Fit) and [`Transform`](crate::traits::Transform)
//! and operates on [`DataFrame`](polars::prelude::DataFrame).

pub mod binarizer;
pub mod encoder;
pub mod imputer;
pub mod normalizer;
pub mod polynomial_features;
pub mod scaler;