how can u import .csv file in to SAS?tell Syntax?
Answer Posted / ganesh
by using proc import or through wizard select import data
from file menu and infile statement.
proc import datafile='c:\my .csv' out =gan;
run;
| Is This Answer Correct ? | 7 Yes | 10 No |
Post New Answer View All Answers
What do the mod and int function do? : Sas programming
In sas admin differentiate between roles and capabilities? : sas-grid-administration
How to create a permanent sas data set?
What are the 3 components in sas programming?
Difference between nodup and nodupkey options?
Describe the function and untility of the most difficult SAS macro that you have written.
How to convert a numeric variable to a character variable?
What is proc sort?
what is snowflake schema? : Sas-di
What are the advantages of using sas?
What is data _null_?
explain about various caches available in data integrator? : Sas-di
what is the use of proc sql? : Sas programming
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
What is the difference between reading data from an external file and reading data from an existing data set?