xls-rs 0.1.7

Rust spreadsheet CLI, library, and MCP server for reading, writing, converting, and analyzing XLSX, XLS, CSV, ODS, Parquet, and Avro with pandas-style operations.
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};