featrs 0.2.0

Feature engineering library for Rust, inspired by scikit-learn
Documentation
1
2
3
4
5
6
7
8
9
//! Time-series feature engineering.
//!
//! Provides lag features, rolling window aggregations, differencing,
//! and cyclical encoding for temporal data.

pub mod cyclical;
pub mod diff;
pub mod lag;
pub mod rolling;