Skip to content
master
Go to file
Code
This branch is 3 commits behind mrocklin:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

Multivariate Polynomial Fit

Holds a python function to perform multivariate polynomial regression in Python using NumPy

See related question on stackoverflow

This is similar to numpy's polyfit function but works on multiple covariates

Origin

This code originated from the following question on StackOverflow

http://stackoverflow.com/questions/10988082/multivariate-polynomial-regression-with-numpy

Author

Matthew Rocklin

License

New BSD license. See LICENSE.txt

Disclaimer

This is not a commonly used method. It often results in a solution with many non-zero coeffieicients like

10 x**2 + 0.01 x y - 0.02 x + 20 y - 0.03 y**2

Instead of a sparse solution like

10 x**2 + 20 y

To obtain sparse solutions (like the second) where near-zero elements are eliminated you should probably look into L1 regularization

About

A multivariate polynomial regression function in python

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.