BookmarkSubscribeRSS Feed
likestat
Calcite | Level 5
Hi,

I have a question for the use and result of 'assess' statement in SAS proc phreg.

I used the following code. I got plot of Standardized Score Process and p_value.
I found the p_value for the testing of Proportional Assumption changes for different run.

How to explain the plot? And how to explain the changes of the p_value for the testing? Due to resampling? I am not familiar with the inside calculation.

Thanks a lot!!


ods graphics on;

proc phreg data = days;
class trt;
model pfsdays*cen(1) = trt / rl;
assess ph resample;
run;

ods graphics off;
1 REPLY 1
likestat
Calcite | Level 5
No one answer? I really hope to understand the basic of the plot.

What does the Standardized score process (y_value) mean?

I tried more. If I use difference reference in the code, the plot just is like a mirror opposite. All positive values become negative vallues but the absolute values seems just the same.

Thanks a lot!!


ods graphics on;

proc phreg data = days;
class trt (ref = 'A'); **or ref = 'B';
model pfsdays*cen(1) = trt / rl;
assess ph resample;
run;

ods graphics off;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1362 views
  • 0 likes
  • 1 in conversation