Chapter Contents |
Previous |
Next |
The PLOT Procedure |
Procedure features: |
|
Program |
options nodate pageno=1 linesize=80 pagesize=40;
data equa; do Y=1 to 3 by .1; X=10**y; output; end; run; |
proc plot data=equa hpercent=50; |
plot y*x; plot y*x / haxis=10 100 1000; title 'Two Plots with Different'; title2 'Horizontal Axis Specifications'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.