In Stata, I am performing the following regression on a data set
regress sales price female black income hs age
This yielded
R-squared: .3208
Adjusted R-Squared: .2282
So let's now suppose I drop the variable age
.
regress sales price female black income hs
This yielded
R-squared: .1661
Adjusted R-Squared: .0936
Thus, incorporating the variable age
in the regression significantly changes R squared and adjusted R squared.
My Question
If I remove a variable from a regression, does the change in R squared reflect the amount of R squared contributed by that variable?