pandrs 0.3.0

A high-performance DataFrame library for Rust, providing pandas-like API with advanced features including SIMD optimization, parallel processing, and distributed computing capabilities
Documentation
//! Module for time series data manipulation

// Module structure
pub mod core;
pub mod date_range;
pub mod frequency;
pub mod resample;
pub mod window;

// GPU-accelerated time series operations (conditionally compiled)
#[cfg(cuda_available)]
pub mod gpu;

// Re-export public items from submodules
pub use self::core::{Temporal, TimeSeries};
pub use self::date_range::date_range;
pub use self::frequency::Frequency;
pub use self::resample::Resample;
pub use self::window::{Window, WindowOperation, WindowType};