pandrs 0.4.1

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
//! Column common types and utilities
//!
//! This module provides backward compatibility for column types.
//! All types have been moved to `crate::core::column` for better organization.

// Re-export core column types for backward compatibility
#[deprecated(since = "0.1.0", note = "Use crate::core::column types directly")]
pub use crate::core::column::*;