14 lines
299 B
Python
14 lines
299 B
Python
# $Id: linear_regression.py,v 1.1 2011-10-06 19:14:50 wirawan Exp $
|
|
#
|
|
# Module wpylib.math.stats.linear_regression
|
|
#
|
|
# Created: 20110414
|
|
# Wirawan Purwanto
|
|
#
|
|
# Transcribed from my cp.inc's stats1.cpp
|
|
|
|
class linreg(object):
|
|
"""Class linreg provides my standard recipe for linear regression.
|
|
"""
|
|
|