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
How do you specify the number of iterations and specific condition within a single do loop?
Differences between where and if statement?
What is the basic syntax of a sas program?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
Mention some common errors that are usually committed in sas programming.
Describe a time when you were really stuck on a problem and how you solved it?
what are the types of interactive display types? : Sas-bi
Give some ways by which you can define the variables to produce the summary report (using proc report)?
What do the PUT and INPUT functions do?
If you could design your ideal job, what would it look like?
what is function of retain statment
Differentiate between sas functions and sas procedures.
for whom is sas data integration studio designed? : Sas-di
What system options would you use to help debug a macro? : sas-macro
what are some good sas programming practices for processing very large data sets? : Sas programming