Features: |
PRINTTO statement without options
|
options nodate pageno=1 linesize=80 pagesize=60 source;
proc printto log='log-file';
run;
data numbers; input x y z; datalines; 14.2 25.2 96.8 10.8 51.6 96.8 9.5 34.2 138.2 8.8 27.6 83.2 11.5 49.4 287.0 6.3 42.0 170.7 ;
ods listing;
proc printto print='output-file'
new;
run;
proc print data=numbers; title 'Listing of NUMBERS Data Set'; run;
proc printto; run; ods listing close;
data numbers; input x y z; datalines; 14.2 25.2 96.8 10.8 51.6 96.8 9.5 34.2 138.2 8.8 27.6 83.2 11.5 49.4 287.0 6.3 42.0 170.7 ;
01 options nodate pageno=1 linesize=80 pagesize=60 source; 02 03 proc printto log='log-file'; 04 run; NOTE: PROCEDURE PRINTTO used (Total process time): real time 0.01 seconds cpu time 0.00 seconds
NOTE: PROCEDURE PRINTTO used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 68 69 data numbers; 70 input x y z; 71 datalines; NOTE: The data set WORK.NUMBERS has 6 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 78 ; 79 ods listing; 80 proc printto 81 print='c:\em\print1.out' 82 new; 83 run; NOTE: PROCEDURE PRINTTO used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 84 85 proc print data=numbers; 86 title 'Listing of NUMBERS Data Set'; 87 run; NOTE: There were 6 observations read from the data set WORK.NUMBERS. NOTE: PROCEDURE PRINT used (Total process time): real time 0.32 seconds cpu time 0.07 seconds 88 89 proc printto; 90 run; NOTE: PROCEDURE PRINTTO used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 91 ods listing close;