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 / 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


Please Help Members By Posting Answers For Below Questions

What is proc sort?

1225


What are the default statistics for means procedure?

1245


Do you know the features of sas?

1044


How do you convert basic cube to transaction cube and transaction cube to basic cube?

2233


what are some differences between proc summary and proc means? : Sas programming

1129


What are the features of SAS?

1035


How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?

1101


Give some ways by which you can define the variables to produce the summary report (using proc report)?

1093


How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?

1674


How substr function works in sas?

1222


which date functions advances a date time or date/time value by a given interval? : Sas programming

959


How will you use the WHO Drug Dictionary for Reporting Clinical Trials?

2339


What is factor analysis?

1136


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

1256


How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro

1048