- generate-statistics-alist SEQ FUNCS #!optional BASICSprocedure
Returns an alist for a set of statistical functions results.
- SEQ
- (sequence-of real) ; the sample
- FUNCS
- (list-of function-spec); the report template
- BASICS
- #(m h g s v) ; required statistics
A function-spec is:
- size
- sample count
- min
- sample minimum
- max
- sample maximum
- arithmetic-mean
- sample arithmetic-average
- standard-deviation
- sample standard-deviation
- percentile
- sample Pth-percentile ; default is 95
- harmonic-mean
- sample harmonic-average
- geometric-mean
- sample geometric-average
- median
- sample median
- mode
- sample mode
- variance
- sample variance
- (KEY . (F [PARAM ...]))
- sample parameterized (: F function-spec)