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


Please Help Members By Posting Answers For Below Questions

What is the role of sas grid administrator? : sas-grid-administration

1042


Explain translate function?

843


what is data integration? : Sas-di

829


In ARRAY processing, what does the DIM function do?

899


How would you identify a macro variable? : sas-macro

745






How can you create a macro variable with in data step? : sas-macro

763


Hi, If anyone has base SAS certification dumps, please share.

1592


What is a macro routine?

2314


Explain proc sort?

854


What are types of transport files?

7329


Did you used proc test? when?

1781


What would be the value of month at the end of data step execution and how many observations would be there?

778


How do you debug and test your SAS programs?

1251


What is the function of Stop statement in a SAS Program?

869


Explain append procedure?

813