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

Returns a formatted string containing the first (Q1), second (Q2), and third (Q3) quartiles of a given vector of 64-bit floating-point numbers.

Arguments

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

Returns

  • String - A formatted string containing the calculated Q1, Q2, and Q3 quartiles, in the format “Q1: {Q1}, Q2: {Q2}, Q3: {Q3}”