scirs2_series/features/
mod.rs

1//! Time series feature extraction modules
2//!
3//! This module provides a modular approach to time series feature extraction,
4//! organized by functionality for better maintainability and performance.
5
6pub mod complexity;
7pub mod config;
8pub mod frequency;
9pub mod statistical;
10pub mod temporal;
11pub mod turning_points;
12pub mod utils;
13pub mod wavelet;
14pub mod window_based;
15
16// Re-export commonly used items for convenience
17#[allow(ambiguous_glob_reexports)]
18pub use complexity::*;
19#[allow(ambiguous_glob_reexports)]
20pub use config::*;
21// pub use frequency::*;
22#[allow(ambiguous_glob_reexports)]
23pub use statistical::*;
24#[allow(ambiguous_glob_reexports)]
25pub use temporal::*;
26#[allow(ambiguous_glob_reexports)]
27pub use turning_points::*;
28#[allow(ambiguous_glob_reexports)]
29pub use utils::*;
30#[allow(ambiguous_glob_reexports)]
31pub use wavelet::*;
32#[allow(ambiguous_glob_reexports)]
33pub use window_based::*;