Skip to main content

batch_descriptive_stats

Function batch_descriptive_stats 

Source
pub fn batch_descriptive_stats(
    arrays: Vec<Vec<f64>>,
) -> PyResult<Vec<HashMap<String, f64>>>
Expand description

Batch descriptive stats for multiple arrays.

For each array computes: n, mean, std, var, min, max, median, q25, q75.

Parameters: arrays: List of data arrays

Returns: List of dicts, one per input array