how to read raw data in sas. Do it manually and throw the
programming.



how to read raw data in sas. Do it manually and throw the programming. ..

Answer / 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

More SAS Interview Questions

how to rearrange the data as our wish by using dataset block?

4 Answers   Cognizant,


Do you need to combine data sets? How should you combine data sets– MERGE or SET statements in DATA steps,PROC APPEND,PROC SQL?

3 Answers  


what is lifetest

1 Answers   Cognizant,


How substr function works in sas?

0 Answers  


What are the difference between the sas data step and sas procs?

0 Answers  






What is difference between rename and lable in sas?

10 Answers   Satyam,


how do u test a pros sql(works or not) without executing it?

1 Answers   DELL, HSBC,


i have a data set with 20 observations i want label from 8 to 15 observations ? how you create this one.

6 Answers   CTS,


what is sas database server? : Sas-di

0 Answers  


What is Linear Regression?

0 Answers  


What data sets do you need to produce the report?

2 Answers   Novartis,


what is data access? : Sas-di

0 Answers  


Categories