//! # Statistical Analysis Engine
//!
//! Core statistical engine providing Bayesian changepoint detection,
//! correlation analysis with significance testing, and time-series trend detection.
//!
//! This module is organized as follows:
//! - [`analysis`](analysis/index.html) - Core implementation (BOCPD, StatisticalEngine, types)
//! - [`tests`](tests/index.html) - Test suite
// Re-export public API from analysis module
pub use ;