Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

what is ae onset date n what is RDS

2664


what is the Population you used in your project, is it ITT or PP?

2806


Explain why double trailing @@ is used in input statement?

1116


Describe crosslist option in tables statement?

1269


What are the special input delimiters used in SAS?

1241


What do the PUT and INPUT functions do?

1388


how does sas handle missing values in procs? : Sas programming

1350


how to change the execute of macro

2385


What are the functions which are used for character handling functions?

1191


What is the basic syntax of a sas program?

1264


Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

1929


What is the length assigned to the target variable by the scan function?

1208


what are sas bi dashboard components? : Sas-bi

1231


Describe 5 ways to do a “table lookup” in SAS?

1191


how does sas handle missing values in a merge? : Sas programming

1103