#statistics-analysis #statistics #performance #analysis #measurement #rust

icentral-stats

Provides statistical analysis utilities for performance metrics, including mean, median, and standard deviation computations on floating-point and duration datasets

1 unstable release

new 0.1.0 Apr 4, 2025

#7 in #statistics-analysis


Used in 45 crates (11 directly)

MIT/Apache

15KB
73 lines

icentral-stats

icentral-stats is a Rust crate providing statistical analysis utilities tailored for performance measurements. It facilitates the extraction of central tendency and variability metrics such as mean, median, and standard deviation. This crate is especially useful when handling timing data in durations or floating-point formats.

Features

  • SpeedupStats: Analyses a mutable vector of f64 values, providing quick insights into dataset characteristics including mean, standard deviation, and median.
  • EdgeStat: Captures performance-related statistics associated with edge processing within graphs, encapsulating insertion time and update times.
  • SimpleStats: Computes essential statistics on durations, thereby assisting in performance profiling.

Usage Example

use icentral_stats::{SpeedupStats, SimpleStats};
use std::time::Duration;

let mut float_data: Vec<f64> = vec![2.0, 3.0, 5.0, 7.0];
let speedup_stats = SpeedupStats::from(&mut float_data);
println!("SpeedupStats: {:?}", speedup_stats);

let mut duration_data: Vec<Duration> = vec![Duration::new(5, 0), Duration::new(10, 0)];
let simple_stats = SimpleStats::from(&mut duration_data);
println!("SimpleStats: {:?}", simple_stats);

The icentral-stats library is designed to address the core needs of performance analysis, where both floating-point and duration data types are involved.

Installation

Add the following to your Cargo.toml:

[dependencies]
icentral-stats = "0.1.0"

Note

This README.md file was generated by an AI model and may not be 100% accurate; however, it should be pretty good.

This crate is in the process of being translated from c++ to rust. Currently, it still needs exhaustive testing. It is likely there currently exist many glitches which need to be fixed before proper usage. This crate is based on the original icentral program developed by Fuad Jamor. Please see the following repository for details: https://github.com/fjamour/icentral.

For progress updates, see the workspacer rust project.

Dependencies

~15–25MB
~386K SLoC