I've a dataset with 70 variables, and I want to try polynomial regression on it. If the number of columns were three/four I could just hand code something like this --
model <- lm(y ~ poly(var1,3) + poly(var2,3) + poly(var4,4)
How would we go about this, if we have 70 variables? Should we type in manually names of all the variables or is there a easier method?