Polynomial Regression: Difference between revisions
From Rice Wiki
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
<math>f(x) = \omega_0 + \omega_1 x + \omega_2 x^2 + ... + \epsilon</math> | <math>f(x) = \omega_0 + \omega_1 x + \omega_2 x^2 + ... + \epsilon</math> | ||
Notice that polynomial regression is a ''form'' of [[Linear Regression]], except there are higher-degree attributes. | |||
To build a polynomial model involves determining the degree of polynomial and using normal linear regression methods. |
Revision as of 18:34, 15 April 2024
Polynomial regression is a model that describes the relationship between x and y as an nth degree polynomial.
Notice that polynomial regression is a form of Linear Regression, except there are higher-degree attributes.
To build a polynomial model involves determining the degree of polynomial and using normal linear regression methods.