Guest User

Untitled

a guest
Nov 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. proc phreg data=bk;
  2. class white(ref='N');
  3. model dcgs_yrs*dcgs_censor(0)=age_at_tx white bk_viremia_tdc;
  4. if bk_viremia_yrs>dcgs_yrs or bk_viremia_yrs=. then do;
  5. bk_viremia_tdc=0;
  6. end;
  7. else do;
  8. bk_viremia_tdc=1;
  9. end;
  10. run;
  11.  
  12. proc phreg data=bk;
  13. class white(ref='N');
  14. model dcgs_yrs*dcgs_censor(0)=age_at_tx white bk_viremia_tdc
  15. immuno_rx_tdc ivig_rx_tdc;
  16. if bk_viremia_yrs>dcgs_yrs or bk_viremia_yrs=. then do;
  17. bk_viremia_tdc=0; immuno_rx_tdc=0; ivig_rx_tdc=0;
  18. end;
  19.  
  20. else do;
  21. bk_viremia_tdc=1; immuno_rx_tdc=immuno_rx; ivig_rx_tdc=ivig_rx;
  22. end;
  23. run;
  24.  
  25. Parameter Standard Hazard
  26. Parameter DF Estimate Error Chi-Square Pr > ChiSq Ratio Label
  27.  
  28. AGE_AT_TX 1 -0.00415 0.01831 0.0515 0.8205 0.996 AGE_AT_TX
  29. white Y 1 0.06509 0.53267 0.0149 0.9027 1.067 white Y
  30. bk_viremia_tdc 1 -0.69208 1.29703 0.2847 0.5936 0.501
  31. immuno_rx_tdc 1 0.33837 1.24702 0.0736 0.7861 1.403
  32. ivig_rx_tdc 1 1.05268 1.23367 0.7281 0.3935 2.865
Add Comment
Please, Sign In to add comment