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
Did you used proc test? when?
What is the purpose of _character_ and _numeric_?
what is program data vector? : Sas-administrator
Enlist the syntax rules followed in sas statements.
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
What is the role of administrative users? : sas-grid-administration
what is sas business intelligence? : Sas-bi
how do you debug and test your sas programs? : Sas programming
Describe 5 ways to do a “table lookup” in SAS?
how does sas handle missing values in sort order? : Sas programming
what are the types of interactive display types? : Sas-bi
What are the features of base sas system?
How do you control the number of observations and/or variables read or written?
What would be the value of month at the end of data step execution and how many observations would be there?
Mention some common errors that are usually committed in sas programming.