next up previous contents index
suivant: Table with string as monter: The CAS functions précédent: Cross product : cross   Table des matières   Index


Statistic functions : mean,variance,stddev, stddevp,median,quantile,quartiles,boxwhisker

The functions described here may be used if the statistic serie is contained in a list. See also section 1.42.31 for matrices and chapter [*] for weighted lists. Example
Define the list A by:
A:=[0,1,2,3,4,5,6,7,8,9,10,11]
Outputs :
  1. 11/2 for mean(A)
  2. sqrt(143/12) for stddev(A)
  3. 0 for min(A)
  4. [1.0] for quantile(A,0.1)
  5. [2.0] for quantile(A,0.25)
  6. [5.0] for median(A) or for quantile(A,0.5)
  7. [8.0] for quantile(A,0.75)
  8. [9.0] for quantile(A,0.9)
  9. 11 for max(A)
  10. [[0.0],[2.0],[5.0],[8.0],[11.0]] for quartiles(A)


next up previous contents index
suivant: Table with string as monter: The CAS functions précédent: Cross product : cross   Table des matières   Index
giac documentation written by Renée De Graeve and Bernard Parisse