What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / mohan reddy
INFILE AND INPUT STATEMENTS
EX;
DATA EMP;
INFILE 'E:\ABC\EMPLOYEE.TXT' MISSOVER;
INPUT VAR1 VAR 2....VARN;
RUN;
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
Explain what is data step?
what are _numeric_ and _character_ and what do they do? : Sas programming
how can you import .csv file in to sas? : Sas programming
What are pdv and it functions?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
how will you location sas platform applications available from web browser? : Sas-bi
What are the scrubbing procedures in sas?
Where do you use proc means over proc freq?
Describe a time when you were really stuck on a problem and how you solved it?
What are symget and symput? : sas-macro
what is the difference between infile and input? : Sas-administrator
how does sas handle missing values in assignment statements? : Sas programming
What is a put statement?
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
for what purpose would you use the retain statement? : Sas programming