Can someone give an explanation, preferably by illustrating the underlying calculation using basic Stata commands, as to how augmented component-plus-residuals are calculated? I do apologize for asking such a basic question, but the documentation for this command links to a paywalled paper, and I've surprisingly not been able to find any other resources explaining how the calculation. I know regular component-plus-residuals can be replicated by:
regress outcome predictor1 predictor2
predict residuals, residuals
gen adjusted_residuals = residuals + (predictor1* coefficient_predictor1)
scatter adjusted_residuals predictor1
How are the augmented component-plus-residuals calculated?
Thanks in advance.
regress outcome predictor1 predictor2
predict residuals, residuals
gen adjusted_residuals = residuals + (predictor1* coefficient_predictor1)
scatter adjusted_residuals predictor1
How are the augmented component-plus-residuals calculated?
Thanks in advance.
Comment