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 are sas bi dashboard components? : Sas-bi
what is the difference between infile and input? : Sas-administrator
Difference between nodup and nodupkey options?
How substr function works in sas?
What is the difference between one to one merge and match merge? Give an example.
How can you limit the variables written to output dataset in data step?
Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
Can you suggest us materials for sdtm mapping?
Are you involved in writing the inferential analysis plan? Tables specfications?
Given an unsorted data set, how to read the last observation to a new data set?
What is the difference between input and infile statement?
Describe 5 ways to do a “table lookup” in SAS?
What is by-group processing?
what is program data vector? : Sas-administrator