Previous PageNext Page

Chapter 13: Proc Plot Syntax
Proc Plot may be used for low resolution graphics: scatter plots, line plots, etc. For better graphics, use Proc Gplot (we will see a demo of this later in the course). Much of the same syntax used in Proc Plot is used in Proc Gplot.

PROC PLOT <option(s)>;

    BY <DESCENDING> variable-1
    <...<DESCENDING> variable-n>
    <NOTSORTED>;

    PLOT plot-request(s) </ option(s)>;

See OnLine documentation for details.

Previous PageTable Of ContentsNext Page