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
Explain append procedure?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
In sas, what are the areas that you are most interested in? : sas-grid-administration
what is the Population you used in your project, is it ITT or PP?
How sas treats the dsd delimiters?
What is the command used to find missing values?
how do you test for missing values? : Sas programming
what is hash files in sas and why we are using this one in sas?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
What is the purpose of _character_ and _numeric_?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
I need level 2 to 5 sas using companies in india
Describe the ways in which you can create macro variables? : sas-macro
What is the difference between order and group variable in proc report?