What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / sankar
use INFLE statement
data dsname;
infile 'path of file' <options>;
input var1 var2................varn;
run;
options like dsd dlm missover firstobs obs ..etc
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
how will you location sas platform applications available from web browser? : Sas-bi
Tell e how how dealt with..
What would be the value of month at the end of data step execution and how many observations would be there?
which date function advances a date, time or datetime value by a given interval? : Sas programming
Differentiate between ceil and floor functions.
what are some differences between proc summary and proc means? : Sas programming
How do you define proc in sas? : sas-grid-administration
Mention common programming errors committed in sas ?
what is star schema? : Sas-di
What are the new features included in the new version of SAS Programming Language?
what is treatment emergent events and treatment emregent adverse event
Have you used macros? For what purpose you have used? : sas-macro
for what purpose would you use the retain statement? : Sas programming
What is the purpose of trailing @ and @@? How do you use them?
Which statement does not perform automatic conversions in comparisons?