ferray-stats
Statistical functions, reductions, sorting, histograms, and set operations for the ferray scientific computing library.
What's in this crate
- Reductions:
sum,mean,var,std,min,max,argmin,argmaxwith SIMD pairwise summation - NaN-aware:
nansum,nanmean,nanvar,nanstd,nanmin,nanmax - Sorting:
sort,argsort,partition,argpartition - Histograms:
histogram,histogram2d,histogramdd,bincount - Set operations:
unique,intersect1d,union1d,setdiff1d,setxor1d - Correlation:
corrcoef,cov,correlate - Axis-aware reductions with Rayon parallelism for large arrays
Usage
use ;
use *;
let a = linspace?;
let m = mean?;
let s = std?;
This crate is re-exported through the main ferray crate.
License
MIT OR Apache-2.0