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 |
How to read the file names of a text files from a shared drive using SAS?
What are the functions which are used for character handling functions?
Name validation tools used in SAS
If a variable contains letters or special characters, can it be numeric data type?
What are the special input delimiters used in SAS?
how many display types available in sas bi dashboard? : Sas-bi
For what purpose(s) would use the RETURN statement?
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
How would you code a merge that will keep only the observations that have matches from both sets.
5 Answers Accenture, Bank Of America,
What is difference between N and n????
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
What does P-value signify about the statistical data?