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
Name and describe few sas character functions that are used for data cleaning in brief.
What is the general format of function in sas? : sas-grid-administration
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
where to use sas business intelligence? : Sas-bi
name some data transformation used in sas di? : Sas-di
Give e an example of..
what is study design in while working with SAS? what are screening variables in SAS?
What is SAS? What are the functions does it performs?
Explain data_null_?
What do you know about sas data set?
What is maximum number of rows and cols can be handled in SAS?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
What would you change about your job?
How do you control the number of observations and/or variables read or written?
How sas treats the dsd delimiters?