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 |
what is Business Intelligence?
what is the need of INDEX in datasets?
What are the data types that sas contain?
what is AE onset date and what is RDS?
What can be the size of largest dataset in SAS?
What is the pound sign used for the DATA _NULL_?
How to convert HTML file into SAS dataset?
What is shift table? have you ever created shift that?
2 Answers Accenture, Clinical Research, Quintiles,
How would you determine how far down on a page you have printed in order to print out footnotes?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
How do you convert basic cube to transaction cube and transaction cube to basic cube?
How would you remove a format that has been permanently associated with a variable? ________________