pub fn vector_quartiles(vector: Vec<i128>) -> String
Expand description

Computes the first (Q1), second (Q2), and third (Q3) quartiles of a given vector of 128-bit signed integers.

Arguments

  • vector - A vector of signed 128-bit integers

Returns

  • String - A formatted string displaying the first, second, and third quartiles as “Q1: {}, Q2: {}, Q3: {}”