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
What is the use of divide function?
Explain append procedure?
What is the difference between %local and %global? : sas-macro
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What are the prime responsibilities of data integration administrator? : Sas-di
what does the run statement do? : Sas programming
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
how does sas handle missing values in functions? : Sas programming
what is the function of catx syntax? : Sas-administrator
what are all the reports you generated in your recent project?
If a variable contains only numbers, can it be a character data type?
What can be the size of largest dataset in SAS?
Can you suggest us materials for sdtm mapping?
why a stop statement is needed for the point= option on a set statement?
Explain the use of proc gplot? : sas-grid-administration