How to obtain value of estimated parameters in SAS (proc phreg) ? I have been searching syntax OUTPUT and baseline but they gives only value XBETA ets.
How to obtain value of estimated parameters in SAS ( proc phreg ) ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m not into statistics, so I’m just guessing what value you mean – here’s an example I think could help you:
This is using SAS Output Delivery System component of SAS/Base.
With
ods trace on;, you’ll see references to parts of procedure output in SAS log:You can refer to those (usually by Name or Path) and store them in a table with
ODS OUTPUT...statement.Look for SAS ODS user guide for more.