//! Trait extensions for ndarray and other types
//!
//! This module provides trait extensions that add useful methods to existing types,
//! particularly for statistical operations and data manipulation that complement
//! the core ndarray functionality.
// Re-export the StatsExt trait from scaling where it's defined
pub use crateStatsExt;
// Additional trait extensions can be added here in the future
// For example: Extensions for DataFrame operations, specialized array operations, etc.