how can u import .csv file in to SAS?tell Syntax?
Answer Posted / chiranjeevi
retreving the data we can use import&infile also.
import:
proc import datafile='external file'
out=<dataset name> dbms=csv replace;
getnames=yes;
proc print data=<dataset name>
run;
infile:
data code;
infile'C:\Documents and Settings\admin\Desktop\chiru.csv';
input<variable list>;
run;
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
what is ae onset date n what is RDS
Can you explain the process of calendar?
How do you test for missing values?
Which are the statements whose placement in the data step is critical?
what is sas metadata repository? : Sas-bi
What is the use of divide function?
What are the special input delimiters used in SAS?
Tell me more about the parameters in macro? : sas-macro
What is maximum storage capability of SAS?
What are the features of SAS?
Where do you use proc means over proc freq?
What are the default statistics for means procedure?
what is snowflake schema? : Sas-di
Name types of category in which SAS Informats are placed?
Difference between sum function and using “+” operator?