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
14
15
16
17
18
//! Data operations module
//!
//! Provides pandas-inspired data manipulation operations.

mod core;
mod diff;
mod histogram;
mod pandas;
mod stats;
mod transform;
pub mod types;

pub use core::DataOperations;
pub use diff::{diff, ChangedRow, DiffResult};
pub use histogram::{histogram, render_histogram};
pub use types::{AggFunc, JoinType, SortOrder};
#[allow(unused_imports)]
pub use types::{NoProgress, ProgressCallback, StderrProgress};