UQuart Function
Calculation of the 3rd quartile
Description
The function \(UQuart\) computes the value of the 3rd quartile (upper quartile) of a sorted list.
Quartiles divide the underlying distribution into four quarters. \(UQuart\) returns the value at the position \(Q3 \) of a sorted list
Syntax
UQuart (List)
Example
a=[3,6,7,8,8,10,13,15,16,20]
UQuart(a)= 15