| The SGPLOT Procedure |
| Procedure features: |
| |
| Sample library member: | GSGPLSER |
![[GSPLSER - Plotting Two Series]](images/gsgplser.gif)
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.