Construct a new summary of a sample set.
Serialize the summary in JSON format.
Original rust comment : Note: this method sacrifices performance at the altar of accuracy Depends on IEEE-754 arithmetic guarantees. See proof of correctness at: ["Adaptive Precision Floating-Point Arithmetic and Fast Robust Geometric Predicates"] (http://www.cs.cmu.edu/~quake-papers/robust-arithmetic.ps)
Original rust comment : Quartiles of the sample: three values that divide the sample into four equal groups, each with 1/4 of the data. The middle value is the median. See median and percentile. This function may calculate the 3 quartiles more efficiently than 3 calls to percentile, but is otherwise equivalent.
Original rust comment : Note: this method sacrifices performance at the altar of accuracy Depends on IEEE-754 arithmetic guarantees. See proof of correctness at: ["Adaptive Precision Floating-Point Arithmetic and Fast Robust Geometric Predicates"] (http://www.cs.cmu.edu/~quake-papers/robust-arithmetic.ps)
Original rust comment : Note: this method sacrifices performance at the altar of accuracy Depends on IEEE-754 arithmetic guarantees. See proof of correctness at: ["Adaptive Precision Floating-Point Arithmetic and Fast Robust Geometric Predicates"] (http://www.cs.cmu.edu/~quake-papers/robust-arithmetic.ps)
A structure that provides simple descriptive statistics on a univariate set of numeric samples.