//! SciRS2 integration for PandRS
//!
//! Provides bridge between PandRS DataFrames/Series and SciRS2's
//! scientific computing capabilities.
//!
//! Enable with the `scirs2` feature flag:
//!
//! ```toml
//! [dependencies]
//! pandrs = { version = "0.3.0", features = ["scirs2"] }
//! ```
//!
//! ## Overview
//!
//! This module provides:
//! - Type conversions between PandRS and ndarray types
//! - Advanced statistical functions via SciRS2
//! - Linear algebra operations via SciRS2
//! - Extension traits for DataFrame
// Re-export key types at module level
pub use ;
pub use ;
pub use SciRS2Ext;