Tuesday, February 27, 2018

SAS: how to customize the plots

SAS: How to Customize the Plots
    ODS GRAPHICS ON;
    ODS TRACE ON;
    ODS OUTPUT Histogram=HIST;
      PROC UNIVARIATE DATA=SAShelp.cars NOPRINT;
      VAR invoice;
      HISTOGRAM invoice;
    RUN;
    ODS TRACE OFF;
    PROC PRINT DATA=HIST;RUN;

No comments: