I have following statements in PROC PHREG (please see below), the meaning does not matter. The purpose is so the output shows hazard ratio for, say, ost_q 2 vs. 1 (since '1' is the reference level), but instead the output from hazardratio statement shows ost_q 1 vs. 2. How to modify this code? Many thanks!
class ost_q (ref='1')/ PARAM = REF;
model hosp*hosp_bin(0) = ost_q;
hazardratio ost_q /cl = wald ;
Hello @pink_poodle,
Add the DIFF=REF option to the HAZARDRATIO statement:
hazardratio ost_q /cl = wald diff=ref;
Hello @pink_poodle,
Add the DIFF=REF option to the HAZARDRATIO statement:
hazardratio ost_q /cl = wald diff=ref;
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.