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 other sas products have you used and consider yourself proficient in using? : Sas programming
Are you involved in writing the inferential analysis plan? Tables specfications?
Enlist the functions performed by sas.
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
State the difference between INFORMAT and FORMAT ?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
Explain how you can debug and test your SAS program?
What is the general format of function in sas? : sas-grid-administration
Have you ever used the SAS Debugger?
Have you used macros? For what purpose you have used? : sas-macro
why is sas considered self-documenting? : Sas programming
How many ways to overcome a missing values???
Can you suggest us materials for sdtm mapping?
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
Explain why double trailing @@ is used in input statement?