What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / name is no need
we can import the an external file in three ways to a sas
data set
1.libname libref<location of the sas data set library>;
filname fileref<path of the raw data file>;
data <data set name>;
infile <fileref>;
input <variable declarations>;
run;
2.proc import
3.by using the proc import option in the sas wizard of file
menu option.
Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is the role of sas grid administrator? : sas-grid-administration
Explain translate function?
what is data integration? : Sas-di
In ARRAY processing, what does the DIM function do?
How would you identify a macro variable? : sas-macro
How can you create a macro variable with in data step? : sas-macro
Hi, If anyone has base SAS certification dumps, please share.
What is a macro routine?
Explain proc sort?
What are types of transport files?
Did you used proc test? when?
What would be the value of month at the end of data step execution and how many observations would be there?
How do you debug and test your SAS programs?
What is the function of Stop statement in a SAS Program?
Explain append procedure?