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 transformation in sas data integration? : Sas-di
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
What is the command used to find missing values?
In SAS explain which statement does not perform automatic conversions in comparisons?
how to remove duplicates using proc sql?
what techniques and/or procs do you use for tables? : Sas programming
What do the mod and int function do? : Sas programming
What system options would you use to help debug a macro? : sas-macro
What is the general format of function in sas? : sas-grid-administration
What are common programming errors committed in sas
How long can a macro variable be? A token? : sas-macro
How to create an external dataset with sas code?
explain the main difference between the nodup and nodupkey options? : Sas-administrator
What is SAS informats?
what is the primary data source for the wrs? : Sas-bi