Using SAS/GRAPH
SAS has excellent graphics capabilities. To make a hard copy of the graphics output you may create a PDF format file and print it using the laser printers at various Student Technology Centers.
To create a PDF file, type the command lines:
FILENAME stat2 'a:\graph1.pdf';
GOPTIONS DEV=PDF GSFNAME=stat2 GSFLEN=132 GSFMODE=REPLACE;
RUN;
GOPTIONS DEV=PDF GSFNAME=stat2 GSFLEN=132 GSFMODE=REPLACE;
RUN;
If you need to produce other format of graphs (e.g. GIF or JPEG format), type the followig command:
PROC GDEVICE;RUN;
Next: Further Reading
Up: Table of Contents
Prev: SAS Data Sets



