factor/extra/math/statistics/statistics.factor

70 lines
1.8 KiB
Factor
Raw Normal View History

USING: kernel math math.analysis math.functions math.vectors sequences
sequences.lib sorting ;
2007-09-20 18:09:08 -04:00
IN: math.statistics
: mean ( seq -- n )
#! arithmetic mean, sum divided by length
2008-09-22 22:31:15 -04:00
[ sum ] [ length ] bi / ;
2007-09-20 18:09:08 -04:00
: geometric-mean ( seq -- n )
#! geometric mean, nth root of product
2008-09-22 22:31:15 -04:00
[ length ] [ product ] bi nth-root ;
2007-09-20 18:09:08 -04:00
: harmonic-mean ( seq -- n )
#! harmonic mean, reciprocal of sum of reciprocals.
#! positive reals only
2008-09-22 22:31:15 -04:00
[ recip ] sigma recip ;
2007-09-20 18:09:08 -04:00
: median ( seq -- n )
#! middle number if odd, avg of two middle numbers if even
natural-sort dup length dup even? [
2008-09-22 22:31:15 -04:00
1- 2 / swap [ nth ] [ >r 1+ r> nth ] 2bi + 2 /
2007-09-20 18:09:08 -04:00
] [
2 / swap nth
] if ;
: range ( seq -- n )
#! max - min
minmax swap - ;
: var ( seq -- x )
#! variance, normalize by N-1
dup length 1 <= [
drop 0
] [
2008-01-09 17:36:30 -05:00
[ [ mean ] keep [ - sq ] with sigma ] keep
2007-09-20 18:09:08 -04:00
length 1- /
] if ;
: std ( seq -- x )
#! standard deviation, sqrt of variance
var sqrt ;
: ste ( seq -- x )
#! standard error, standard deviation / sqrt ( length of sequence )
dup std swap length sqrt / ;
2007-09-20 18:09:08 -04:00
: ((r)) ( mean(x) mean(y) {x} {y} -- (r) )
! finds sigma((xi-mean(x))(yi-mean(y))
2008-03-29 21:36:58 -04:00
0 [ [ >r pick r> swap - ] bi@ * + ] 2reduce 2nip ;
2007-09-20 18:09:08 -04:00
: (r) ( mean(x) mean(y) {x} {y} sx sy -- r )
* recip >r [ ((r)) ] keep length 1- / r> * ;
: [r] ( {{x,y}...} -- mean(x) mean(y) {x} {y} sx sy )
2008-03-29 21:36:58 -04:00
first2 [ [ [ mean ] bi@ ] 2keep ] 2keep [ std ] bi@ ;
2007-09-20 18:09:08 -04:00
: r ( {{x,y}...} -- r )
[r] (r) ;
: r^2 ( {{x,y}...} -- r )
r sq ;
: least-squares ( {{x,y}...} -- alpha beta )
[r] >r >r >r >r 2dup r> r> r> r>
! stack is mean(x) mean(y) mean(x) mean(y) {x} {y} sx sy
[ (r) ] 2keep ! stack is mean(x) mean(y) r sx sy
swap / * ! stack is mean(x) mean(y) beta
[ swapd * - ] keep ;