Procedure features: |
PROC
PLOT statement option
|
|
Data set: |
EDUCATION
|
This example shows how missing values affect the calculation of
the
axes.
|
options nodate pageno=1 linesize=80 pagesize=35; |
|
proc sort data=education;
by region;
run; |
|
proc plot data=education nomiss; |
|
by region; |
|
plot expenditures*dropoutrate='*' $ state / href=28.6; |
|
title 'Plot of Dropout Rate and Expenditure Per Pupil';
run; |
|
Plot of Dropout Rate and Expenditure Per Pupil 1
---------------------------------- Region=NE -----------------------------------
Plot of Expenditures*DropoutRate$State. Symbol used is '*'.
Expenditures | |
8000 + |
| |
| * New Jersey |
| |
| |
7000 + |
| * Connecticut |
| |
| |
| |
6000 + Massachusetts * |
| * Maryland |
| |
| Delaware *|
| |
5000 + |
| * Maine * New Hampshire
| |
| |
| |
4000 + |
| |
--+--------+--------+--------+--------+--------+--------+--------+-
16 18 20 22 24 26 28 30
Dropout Percentage - 1989
NOTE: 1 obs had missing values.
| |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.