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
Given an unsorted data set, how to read the last observation to a new data set?
how many types of prompts are there? : Sas-bi
What is maximum storage capability of SAS?
what has been your most common programming mistake? : Sas programming
what are the types of interactive display types? : Sas-bi
How are numeric and character missing values represented internally?
What do the PUT and INPUT functions do?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
what is sas olap server? : Sas-di
What versions of SAS have you used (on which platforms)?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
Explain why double trailing @@ is used in input statement?
How do you use the do loop if you don’t know how many times you should execute the do loop?
What is program data vector (pdv)?
What are the difference between the sas data step and sas procs?