Advertisement
Guest User

Untitled

a guest
May 31st, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. DATA plasma2;
  2. set plasma2;
  3. z=0;
  4. run;
  5.  
  6.  
  7. proc transreg data=plasma2 maxiter=0 nozeroconstant detail
  8. plots=(transformation(depedet)scatter);
  9. model boxcox (RETPLASMA)=identity(z);
  10. output out=BOXRETPLASMA;
  11. run;
  12.  
  13. DATA plasma3;
  14. SET plasma2;
  15. RETDIETtran=RETDIET+121;
  16. RUN;
  17.  
  18. proc transreg data=plasma3 maxiter=0 nozeroconstant detail
  19. plots=(transformation(depedet)scatter);
  20. model boxcox (RETDIETtran)=identity(z);
  21. output out=BOXRETDIET;
  22. run;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement