Advertisement
Guest User

Stats tute week 13

a guest
Oct 25th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.20 KB | None | 0 0
  1. DATA trees;
  2. INPUT height canopy @@;
  3. DATALINES;
  4. 600 550
  5. 1100 690
  6. 800 560
  7. 1300 730
  8. 400 350
  9. 1200 660
  10. 900 450
  11. ;
  12. RUN;
  13. PROC PLOT;
  14. PLOT canopy*height;
  15. RUN;
  16. PROC REG;
  17. MODEL canopy=height;
  18. RUN;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement