A linear regression model has been created based on a dataset with observations which can be sorted into several different categories.
I have been asked to assess how well this regression model (which was created using the entire dataset) fits the observations by the category subsets. Correct me if needed, but this seems to render R-squared useless - (1) because the means of predictions and observations inside a specific category are not equal (sum of $\hat{Y_i}$ does not equal sum of $Y_i$), and the relationship that SSE + SSR = SSTotal no longer holds within each category.
Calculating the correlation coefficient between the overall model's fits for a single category, and those category's observations, would be equivalent to fitting a new least-squares model specific to that category and calculating an R-squared value, but that would not be assessing the fit of the OVERALL model to that category. Does that make sense?
What other options would you recommend here? Would some kind of likelihood ratio test perhaps be appropriate? I confess I'm not sure what else to do.
Thanks for your help.