![]() |
![]() |
The SGPLOT Procedure |
Procedure features: |
| |
Sample library member: | GSGPLSER |
This example shows a series plot with three series on the Y axis.
![]() |
proc sgplot data=sashelp.stocks (where=(date >= "01jan2000"d and stock = "IBM")); title "Stock Trend"; |
![]() |
series x=date y=close; series x=date y=low; series x=date y=high; run; |
![]() |
![]() |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.