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 ae onset date n what is RDS
what is the Population you used in your project, is it ITT or PP?
Explain why double trailing @@ is used in input statement?
Describe crosslist option in tables statement?
What are the special input delimiters used in SAS?
What do the PUT and INPUT functions do?
how does sas handle missing values in procs? : Sas programming
how to change the execute of macro
What are the functions which are used for character handling functions?
What is the basic syntax of a sas program?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
What is the length assigned to the target variable by the scan function?
what are sas bi dashboard components? : Sas-bi
Describe 5 ways to do a “table lookup” in SAS?
how does sas handle missing values in a merge? : Sas programming