From: sas analysis on
Hi everyone,

I have a very simple question. I am not knowing how to get simple
count (how many had an event and how many did not in proc phreg). I
know that you can use the command SIMPLE for means and standard
deviations, but what about counts? when you run a simple phreg it only
gives you how many had an event but I want to know how many did not
too since I am using a longitudinal dataset it does not explicitly
give that.
any ideas?

here is the code:
proc phreg data = work covs(aggregate);
model (time0 vistime)*event(0) = gender;
id id;
run;

when I added simple it gave the mean and SD but gender is coded as 0,1

Thanks!