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

What are the efficacy variables in your study?

2 Answers   Accenture, Quintiles,


i have a macro variable var1,var2. i want titles for the each macro variable separately? how it is possible?

1 Answers   L&T,


Please, anyone, let me know the style or an example of using 'by='/'by' variable of a PDV(Program Data Vector)

3 Answers   Verinon Technology Solutions,


what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?

0 Answers  


How would you identify a macro variable?

0 Answers  


How to create an external dataset with sas code?

0 Answers  


what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming

0 Answers  


What is a put statement?

0 Answers  


How to get the repeated values by using sql in sas ?

2 Answers  


what is lifetest

1 Answers   Cognizant,


What is the difference between a PROC step and a DATA step?

14 Answers   Accenture, HSBC,


describe about metadata object? : Sas-di

0 Answers  


Categories