pandrs 0.3.2

A high-performance DataFrame library for Rust, providing pandas-like API with advanced features including SIMD optimization, parallel processing, and distributed computing capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Backward compatibility module for statistics
//!
//! This module provides backward compatibility for code that uses the old
//! statistics module structure. It re-exports types and functions from
//! the new module structure with appropriate deprecation notices.

// Include the actual implementation modules
pub mod descriptive;
pub mod inference;
pub mod regression;
pub mod sampling;
pub mod categorical;