how to know the attributes of first five datasets in a library
Answers were Sorted based on User's Feedback
Answer / sagar
Use Proc Content procedure to know the attributes of the Dataset
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / naresh
proc datasets library = work details;
contents data = xx1;
contents data = xx2;
contents data = xx3;
contents data = xx4;
contents data = xx5;
run;
It will give information about data sets in a library.........
| Is This Answer Correct ? | 8 Yes | 0 No |
How would you include common or reuse code to be processed along with your statements?
Intern stastical programmer written test
what is lifetest
Are you involved in writing the inferential analysis plan? Tables specfications?
Mention what is PROC in SAS?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
Difference between SAS STATA & SPSS?
How does proc sql work?
What’s the difference between var b1 – b3 and var b1 — b3?
what is the use of proc contents and proc print in sas? : Sas-administrator
Can you execute macro within another macro? : sas-macro
What is Linear Regression?