There is one big difference in the way transformations and polynomial models work: if we do a transformation we replace an old variable with a new one, if we do a polynomial model we add a new predictor to the model.
Mathematical Features of these Models
What "shapes" can we fit with these models?
• Square root, exponential and power models are monotone, that is they either go up or down but never turn around.
• Polynomial models usually do turn around, quadratic models once, cubic models twice and so on. Sometimes this is not apparent because we only see the graph before the turn-around happens.
How to find these models
The only way to find the square root model is as described above: make a new variable SQRT (x) and fit y vs. SQRT(x). The exponential, power, quadratic and cubic models can be fit (and checked) using the Fitted Line Plot routine. Any higher order polynomial models again have to be fit as described above.
Example: Electricity Usage data:
• Square root model:
Calc > Calculator, Store in: SQRT(Temp) Expression: SQRT('Temperature')
Stat > Regression > Regression, Response= Usage, Predictors=, SQRT(Temp)
Result: Usage = 187 - 19.8·√Temperature
• Exponential model:
Graph > Regression > Fitted Line Plot, Response=Usage, Predictor= Temperature, Options > check logten of Y
Model from MINITAB fit: logten(Usage) = 2.317 - 0.01384 Temperature
so β0=2.317, hence α=102.317=207.5, and the exponential model is:
Usage = 207.5·10-0.0138Temperature
• Power model:
Graph > Regression > Fitted Line Plot, Response=Usage, Predictor= Temperature, Options > check logten of Y and logten of X
Model from MINITAB fit: logten(Usage) = 4.308 - 1.599 logten(Temperature)
so β0=4.308, hence α=104.308=20320, and the power model is:
Usage = 20320·Temperature-1.6
• Quadratic model:
Graph > Regression > Fitted Line Plot, Response=Usage, Predictor= Temperature, check quadratic
Usage = 196.7 - 4.640·Temperature + 0.03073·Temperature2
• Cubic model:
Graph > Regression > Fitted Line Plot, Response=Usage, Predictor= Temperature, check cubic
Usage = 213.0 - 5.689·Temperature + 0.05198·Temperature2
- 0.000136·Temperature3
•Power 4 (Biquadratic)
Calc > Calculator, Store in: Temp**2, Expression: 'Temperature'**2
Calc > Calculator, Store in: Temp**3, Expression: 'Temperature'**3
Calc > Calculator, Store in: Temp**4, Expression: 'Temperature'**4
Stat > Regression > Regression, Response= Usage, Predictors=, Temperature Temp**2 Temp**3 Temp**4
Usage = 202 - 4.7 Temperature + 0.020 Temp2 + 0.00030 Temp3 - 0.000002 Temp4