You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
299 B
14 lines
299 B
13 years ago
|
# $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.
|
||
|
"""
|
||
|
|