how can u import .csv file in to SAS?tell Syntax?
Answer Posted / enr
To create csv file,we have to open notepad.then ,declaring
the variables.then save the file.like enr.csv
SYNTAX: proc import datafile='external file'
out=<dataset name> dbms=csv replace;
getnames=yes;
proc print data=<dataset name>
run;
eg:proc import datafile='E:\enr.csv'
out=sai
dbms=csv replace;
getnames=yes;
proc print data=sai;
run;
| Is This Answer Correct ? | 32 Yes | 2 No |
Post New Answer View All Answers
What is run-group processing?
for report generation which one you used proc report or data_null_?
what is sas business intelligence? : Sas-bi
Approximately what date is represented by the SAS date value of 730?
is data integration and etl programming is same? : Sas-di
What is the maximum length of the macro variable?
Which statement does not perform automatic conversions in comparisons?
explain what is factor analysis? : Sas-administrator
What are the difficulties u faced while doing vital signs table or dataset?
Do you need to rearrange the order of the data for the report?
Have you used macros? For what purpose you have used? : sas-macro
What can you learn from the SAS log when debugging?
What system options would you use to help debug a macro? : sas-macro
what has been your most common programming mistake? : Sas programming
What is connection profile? : sas-grid-administration