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 sas metadata server? : Sas-di
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
Describe the function and utility of the most difficult SAS macro that you have written?
What is slibref?
What are the functions used for character handling?
How do you debug and test your SAS programs?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
sas implementing companies in pune implementing clinical projects if anyone knows plz send ans immediately
what is the purpose of _error_? : Sas programming
where to use sas business intelligence? : Sas-bi
What is the role of administrative users? : sas-grid-administration
What is the function of Stop statement in a SAS Program?
what are sas/access and sas/connect? : Sas programming
How are numeric and character missing values represented internally?
What is the difference between INPUT and INFILE ?