pub fn vector_interquartile_range_float(vector: Vec<f64>) -> f64
Expand description

Computes the interquartile range (IQR) of a given vector of 64-bit floating-point numbers.

Arguments

  • vector - A vector of 64-bit floating-point numbers

Returns

  • f64 - The interquartile range of the input vector, calculated as the difference between the third (Q3) and first (Q1) quartiles