| The SGPLOT Procedure |
| Procedure features: | DOT statement |
| Sample library member: | GSGPLDT1 |
![[GSGPLDT1 - Adding Statistical Limits to a Dot Plot]](images/gsgpldt1.gif)
This example shows a dot plot with a response variable and statistical limits. Each dot represents the mean for each value of the category variable, and bands represent the standard deviation.
| |
proc sgplot data=sashelp.class(where=(age<16));
dot age / response=height stat=mean
limitstat=stddev numstd=1;
run; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.