🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-13-2021 06:34 PM
(837 views)
Hi all,
I am using a code with PROC GLM for a multivariate regression.
I would like to get the adjusted R-Square.
I have numeric and categoric variables.
How could I get this Adjusted R-Square working with proc glm?
Thanks all in advance,
Daniel
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Replace PROC GLM with PROC GLMSELECT:
See this sample code:
proc glmselect data=sashelp.class;
class sex;
model weight = sex height age/selection=none;
Run;
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Replace PROC GLM with PROC GLMSELECT:
See this sample code:
proc glmselect data=sashelp.class;
class sex;
model weight = sex height age/selection=none;
Run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much!