🔒 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-28-2017 12:33 PM
(4360 views)
Hello,
I am having difficulty to retain the labels for the respective variables while generating the output for regression using proc logistic.
Though the dataset has the labels retained, I am unable to see them in the output. Any suggestions?
proc logistic data = have;
class x (ref = "0") y (ref = "0")/ param=ref;
model z (ref="0") = x y;
label x = 'drug use binary'
y = 'travel binary';
run;
Thank you
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use the PARMLABEL option in the MODEL statement as described here
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Which output? Do you have a specific table in mind?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
The table of OR estimates
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use the PARMLABEL option in the MODEL statement as described here
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
yes, that's the one. Sorry for not clarifying it at the beginning.