I am working with some data on which I used the poly()
function to get 4th degree polynomials. I had one model that only had significance for the first degree, so I tried to simplify it and get different coefficients and other info under "Coefficients:" from the summary()
function, by using lm1=lm(data1~data2)
versus lm2=lm(data1~poly(data2, degree=1))
.
My biggest question is should I use the lm2
instead of the lm1
in order to stay consistent with other models with higher degree polynomials?