In a linear regression, we can use R-Squared to check if a model fits
But what if I have a polynomial regression with to variable $var_1$ and $var_2$ and a model that goes like $$y=x_0+ x_1\cdot var_1 + x_2\cdot var_1^2 + x_3\cdot var_2 + x_4\cdot var_2^2$$
can we use r squared to check if fits well (or adjusted r squared)
i looked up and find both answers, yes and no...
also can we say that $$y=x_0+ x_1\cdot var_1 + x_2\cdot var_2$$ is a simple linear regression and use r squared?
if no, how can we check if a polynomial regression fits well?