Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Brand Time Sale
  2. A 1 12
  3. A 2 15
  4. A 3 10
  5. A 4 10
  6. B 1 12
  7. B 2 32
  8. B 3 15
  9. B 4 30
  10. C 1 8
  11. C 2 9
  12. C 3 12
  13. C 4 15
  14.  
  15. proc sgplot data=work.summary;
  16. series x=year y=sale_amt / group=brand;
  17. run;
  18.  
  19. proc sgplot data=sashelp.stocks;
  20. series x=date y=open / group=stock;
  21. run;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement