What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / madhu
infile and input statements.
ex:
data m;
infile 'c:\m.txt';
input :xxxx;
run;
Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Name few SAS functions?
What are the functions which are used for character handling functions?
Give some examples where proc report’s defaults are different than proc print’s defaults?
How does the internal authentication work in sas? : sas-grid-administration
what is the use of sas management console? : Sas-di
describe the interaction table in sas di? : Sas-di
do you need to know if there are any missing values? : Sas programming
What are the five ways to do a table lookup in sas? : sas-grid-administration
What are types of transport files?
How do dates work in SAS data?
What are all the problems you faced while validating tables and reports?
How do dates work in sas?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
How do you control the number of observations and/or variables read or written?
What is by-group processing?