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