Skip to content

Commit

Permalink
Basic statistics and a linear curve fit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas M. Hermann committed Jan 3, 2012
1 parent c574fbb commit f823ac3
Show file tree
Hide file tree
Showing 4 changed files with 179 additions and 1 deletion.
72 changes: 72 additions & 0 deletions curve-fit.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp -*-
#|
Floating Point Functions
Copyright (c) 2009-2011, Thomas M. Hermann
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
o Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
o Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
o The names of the contributors may not be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|#

(in-package :floating-point)

;;; FIXME : Needs to be audited for performance. This could be easily
;;; modified to calculate the accumulated values in parallel.
;;; FIXME : Should perform scaled summations.
;;; FIXME : Check for zero slope.
(defun linear-least-squares (data-x data-y)
"Return the slope, intercept, variance and r^2.
'Engineering Mathematics and Statistics' Cheremisinoff, pg. 126"
(if (= (length data-x) (length data-y))
(loop with data-N = (length data-x)
for x across data-x
and y across data-y
;; Sum data quantities
sum x into sum-x
sum y into sum-y
sum (* x x) into sum-x2
sum (* y y) into sum-y2
sum (* x y) into sum-xy
;; Results
finally
(let* ((avg-x (/ sum-x data-N))
(avg-y (/ sum-y data-N))
(sxx (- sum-x2 (* sum-x avg-x)))
(syy (- sum-y2 (* sum-y avg-y)))
(sxy (- sum-xy (* sum-x avg-y)))
;; Results
(slope (/ sxy sxx))
(intercept (- avg-y (* slope avg-x)))
(variance (/ (- syy (* slope slope sxx)) (- data-N 2)))
(correlation (/ (* sxy sxy) sxx syy)))
;; Return multiple values to reduce consing.
(return-from linear-least-squares
(values slope intercept variance correlation))))
(error "X and Y data must be equal length.")))
9 changes: 8 additions & 1 deletion defpackage.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@
;; Floating point predicates
:float-equal
:sigfig-equal
:norm-equal))
:norm-equal
;; Curve fitting
:linear-least-squares
;; Statistics
:arithmetic-mean
:standard-deviation
:sample-standard-deviation
:mean-and-standard-deviation))

(pushnew :floating-point *features*)
2 changes: 2 additions & 0 deletions floating-point.asd
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,6 @@
:components
((:file "defpackage")
(:file "error-analysis" :depends-on ("defpackage"))
(:file "curve-fit" :depends-on ("defpackage"))
(:file "statistics" :depends-on ("defpackage"))
(:file "predicates" :depends-on ("error-analysis"))))
97 changes: 97 additions & 0 deletions statistics.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp -*-
#|
Floating Point Functions
Copyright (c) 2009-2011, Thomas M. Hermann
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
o Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
o Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
o The names of the contributors may not be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|#

(in-package :floating-point)

(defun arithmetic-mean (data1 data2 &rest data)
"Return the arithmetic mean of the data."
(if data
(loop for item in data sum item into sumdata
finally return
(/ (+ data1 data2 sumdata)
(+ 2 (length data))))
(* 1/2 (+ data1 data2))))

(defun standard-deviation (data1 data2 &rest data)
"Return the standard deviation of the data."
(if data
(loop with mean = (apply 'arithmetic-mean data1 data2 data)
with diff1 = (* (- data1 mean) (- data1 mean))
with diff2 = (* (- data2 mean) (- data2 mean))
for item in data
as diff = (- item mean)
sum (* diff diff) into sumdiff
finally return
(sqrt (/ (+ diff1 diff2 sumdiff)
(+ 2 (length data)))))
(let* ((mean (arithmetic-mean data1 data2))
(diff1 (* (- data1 mean) (- data1 mean)))
(diff2 (* (- data2 mean) (- data2 mean))))
(sqrt (* 1/2 (+ diff1 diff2))))))

(defun sample-standard-deviation (data1 data2 &rest data)
"Return the sample standard deviation of the data."
(if data
(loop with mean = (apply 'arithmetic-mean data1 data2 data)
with diff1 = (* (- data1 mean) (- data1 mean))
with diff2 = (* (- data2 mean) (- data2 mean))
for item in data
as diff = (- item mean)
sum (* diff diff) into sumdiff
finally return
(sqrt (/ (+ diff1 diff2 sumdiff)
(+ 1 (length data)))))
(let* ((mean (arithmetic-mean data1 data2))
(diff1 (* (- data1 mean) (- data1 mean)))
(diff2 (* (- data2 mean) (- data2 mean))))
(sqrt (+ diff1 diff2)))))

(defun mean-and-standard-deviation (data1 data2 &rest data)
"Return the arithmetic mean and sample standard deviation."
(if data
(loop with mean = (apply 'arithmetic-mean data1 data2 data)
with diff1 = (* (- data1 mean) (- data1 mean))
with diff2 = (* (- data2 mean) (- data2 mean))
for item in data
as diff = (- item mean)
sum (* diff diff) into sumdiff
finally return
(values mean (sqrt (/ (+ diff1 diff2 sumdiff)
(+ 1 (length data))))))
(let* ((mean (arithmetic-mean data1 data2))
(diff1 (* (- data1 mean) (- data1 mean)))
(diff2 (* (- data2 mean) (- data2 mean))))
(values mean (sqrt (+ diff1 diff2))))))

0 comments on commit f823ac3

Please sign in to comment.