This document discusses polynomial regression models. It explains that polynomial models can be used when the relationship between variables is curvilinear or nonlinear over a small range. The key points are:
- Polynomial models add terms like x^2, x^3, etc. to the standard linear regression model to allow for curvature.
- Higher order polynomials can fit the data perfectly but may not generalize well. Lower orders like quadratic are generally best.
- Extrapolation with polynomials requires caution as the curve may change shape outside the observed range.
- Orthogonal polynomials can be used to avoid issues like multicollinearity and allow adding terms incrementally.