BookmarkSubscribeRSS Feed
mili
Fluorite | Level 6

Hi, 

 

I developed a model using Cox proportional hazards regression. I would like to obtain the c-statistics using Uno's method. I would like to know how to code to obtain the 95% confidence interval. This is the code I have that provides me only with the Uno's c-statistics.

 

proc phreg data= cpm_10.harmo concordance= uno;
class prim_grp (ref = '1') vmet (ref = '0') / param=ref;
model survival *censored_1y(1)= prim_grp vmet lsf / ties=exact;
run;

 

thank you very much for your help,

Anick

1 REPLY 1
tamhane
Obsidian | Level 7

SAS does report standard error with it.

 

Uno's Concordance Statistic

Source

Estimate

Standard
Error

Model

0.5464

0.1584

 

For 95% CI: you would multiple SE with 1.96. 

 

In the given example, it would be 0.1584*1.96 = 0.3105

 

Lower limit = 0.5464 - 0.3105 = 0.2359 

Upper limit = 0.5464 + 0.3105 = 0.8569

 

Thus if rounded 0.55 (0.24, 0.86) or expressed as % then 54.6 (23.6, 85.7).

 

Hope this helps.

 

Ashutosh

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 2742 views
  • 0 likes
  • 2 in conversation