how to read raw data in sas. Do it manually and throw the
programming.
Answer Posted / singh.naveen409
Process-1
FIle-Import Data-Next-Browse-ok-finish
Process-2
filename myfile "file location path.extension";
data qqq;
infile myfile;
input ......................;
run;
In the place of this .............just right down variable
name;
If you have csv file then;
process:-
proc inport out=work.auto1 filename " path of file which you
want to read.csv"
dbms=csv replace;
getnames=yes;
run;
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Which command is used to perform sorting in sas program?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
Compare sas with other data analytics tools.
Explain what Proc glm does?
What is maximum storage capability of SAS?
How to test the debugging in sas?
What is the basic syntax style in SAS?
Differentiate between format and informat? : sas-grid-administration
If a variable contains letters or special characters, can it be numeric data type?
what does the run statement do? : Sas programming
Explain how merging helps to combine data sets.
What are the data types in sas?
What can you learn from the SAS log when debugging?
What are the implications?
Mention sas system options to debug sas macros.