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
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
what is sas metadata server? : Sas-di
how does sas handle missing values in functions? : Sas programming
how does sas handle missing values in formats? : Sas programming
What Proc glm does?
What are the different versions of sas that you have used until now? : sas-grid-administration
What is substr function?
Hi, If anyone has base SAS certification dumps, please share.
How are numeric and character missing values represented internally?
why is sas data integration studio important? : Sas-di
what are sas bi dashboard components? : Sas-bi
for whom is sas data integration studio designed? : Sas-di
How do you add a number to a macro variable? : sas-macro
How to limit decimal places for variable using proc means?
Mention some common errors that are usually committed in sas programming.