Advertisement
Guest User

Hazard Function ODS

a guest
Feb 13th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.24 KB | None | 0 0
  1. /*Background: The hazard function , h(t)*/
  2. ods graphics on;
  3. Title1 "Epanechnikov Kernel-Smoothed Hazard Function";
  4. proc lifetest data=whas500(where=(fstat=1))plots=hazard(bw=200)notable;
  5. time lenfol*fstat(0);
  6. run;
  7. Title1;
  8. ods graphics off;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement