xls-rs 0.1.2

A powerful CLI tool and library for spreadsheet manipulation with pandas-style operations. Supports CSV, Excel (XLSX, XLS, ODS), Parquet, and Avro formats with formula evaluation, data transformation, and comprehensive analytics capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Data profiling operations
//!
//! Provides comprehensive data profiling capabilities including
//! statistical analysis, data quality metrics, and insights.

pub mod analysis;
pub mod profiler;
pub mod quality;
pub mod types;

// Re-export main types for convenience
pub use profiler::DataProfiler;
pub use types::*;