- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 04-21-2021 07:22 PM
(988 views)
When running a regression model in proc iml, I see how to get R-Square but how do I get the adjusted R-Squared?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You just add a line to the program that computes adjusted R-squared, according to the formula (for example, here)
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I'll assume that your design matrix, X, already has a column of 1s for the intercept term. Then according to the SAS/STAT documentation for regression, the formula for the adjusted R-squared is
p = ncol(X);
AdjR = 1 - (n-1)/(n-p)*(1-rSquare);