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
how can you create zero observation dataset? : Sas programming
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
Which are the statements whose placement in the data step is critical?
State the difference between INFORMAT and FORMAT ?
How would you define the end of a macro? : sas-macro
What are types of transport files?
What is the maximum length of the macro variable? : sas-macro
Give an example where SAS fails to convert character value to numeric value automatically?
What is interleaving in SAS?
what is hash files in sas and why we are using this one in sas?
what are _numeric_ and _character_ and what do they do? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
How would you invoke a macro? : sas-macro
What does proc print, and proc contents are used for?