Sas memo (1), sas memo
Simple dataset output
Logs
85 libname saslib base 'e: \ sasdata ';
NOTE: The logical Library Reference name "SASLIB" has been successfully allocated, as shown below:
Engine: BASE
Physical name: E: \ sasdata
86
87 data saslib. Student;
88 input name $ Age Score;
89 datalines;
NOTE: The SASLIB. STUDENT dataset has three observations and three variables.
NOTE: time used by the "DATA statement" (total processing time ):
Actual Time: 0.00 seconds
CPU time: 0.00 seconds
93;
94 title "Student Data ";
95 proc print data = saslib. Student;
96 run;
NOTE: three observations are read from the SASLIB. STUDENT dataset.
NOTE: time used for "procedure print" (total processing time ):
Actual Time: 0.02 seconds
CPU time: 0.00 seconds
Program
Libname saslib base 'e: \ sasdata ';
Data saslib. Student;
Input name $ Age Score;
Datalines;
Li Si 25 85.6
Wang Wu 27 98.12
Zhang San 30 78
;
Title "Student Data ";
Proc print data = saslib. Student;
Run;
Output
All content of this blog is original, if reproduced please indicate the source http://blog.csdn.net/myhaspl/
69;
70
71 proc print data = saslib. Student;
72 run;
NOTE: three observations are read from the SASLIB. STUDENT dataset.
NOTE: time used for "procedure print" (total processing time ):
Actual Time: 0.01 seconds
CPU time: 0.01 seconds