| The SGPANEL Procedure |
| Procedure features: | VLINE statement |
| Sample library member: | GSGPNLIN |
![[Panel of Line Charts]](images/gsgpnlin.gif)
This example shows a panel of line plots with grouped data.
| |
proc sgpanel data=sashelp.prdsale;
where product in ("CHAIR" "SOFA");
title "Yearly Sales by Product"; |
| |
panelby year / spacing=5 novarname; |
| |
vline month / response=actual group=product; run; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.