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?
poly(data2, degree=1)is simply a version ofdata2that has been centered to 0 and standardized to a Euclidean length of 1? – whuber Jul 05 '19 at 17:05