Sas memo (1), sas memo

Source: Internet
Author: User

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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.