//! Statistical computations for advanced plot types
//!
//! This module provides statistical algorithms used by various plot types:
//! - Kernel density estimation (KDE) for violin and density plots
//! - Regression analysis for regplot and residplot
//! - Quantile calculations for boxen plots
//! - Contour extraction using marching squares
//! - Beeswarm algorithm for non-overlapping point placement
//! - Hierarchical clustering for clustermaps
pub use beeswarm_positions;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;