BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
lillymaginta
Lapis Lazuli | Level 10
proc hpgenselect data=cd1;
class ut (ref= '1') gender / param = ref;
model ut= age gender/ dist=mult link=glogit;
   selection method=forward (choose=aicc) details=all;
   run;

Would it be possible to output odds ratio from hpgselect? The above code provides parameter estimates only 

1 ACCEPTED SOLUTION

Accepted Solutions
ed_sas_member
Meteorite | Level 14

Hi @lillymaginta 

 

In this case, I would suggest to switch to PROC HPLOGISTIC procedure is a high-performance statistical procedure that fits logistic regression models for binary, binomial, and multinomial data on the SAS appliance.

The SELECTION statements allow to use AICC:

proc hplogistic data=...;
	model ...;
	selection method= forward (select= AICC);
run;

Best,

View solution in original post

3 REPLIES 3
ed_sas_member
Meteorite | Level 14

Hi @lillymaginta 

 

I don't think PROC HPGENSELECT can output such things.

You will have better chance using PROC LOGISTIC

 

Best,

 

lillymaginta
Lapis Lazuli | Level 10

Thank you but would it be possible to specify the forward selection based on AIC in proc logistic? 

ed_sas_member
Meteorite | Level 14

Hi @lillymaginta 

 

In this case, I would suggest to switch to PROC HPLOGISTIC procedure is a high-performance statistical procedure that fits logistic regression models for binary, binomial, and multinomial data on the SAS appliance.

The SELECTION statements allow to use AICC:

proc hplogistic data=...;
	model ...;
	selection method= forward (select= AICC);
run;

Best,

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 812 views
  • 5 likes
  • 2 in conversation