Polynomial Regression
From Rice Wiki
Polynomial regression is a model that describes the relationship between x and y as an nth degree polynomial.
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle f(x) = \omega_0 + \omega_1 x + \omega_2 x^2 + ... + \epsilon}
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.
