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 to get any kind of data in SAS? Is it possible to take
data from notepad in SAS?

Answer Posted / krishna

In base sas
we can data from external data by

data <datasetname>;
infile 'path\file.txt';
run;

by procedure

proc import datafile='path\file.xls' out=<datasetname>
dbms=excel;
sheet='sheetname';
run;

proc import table=tablename out=<datasetname>
dbms=access;
database='path\file.mdb';
run;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are the benefits of data integration? : Sas-di

1178


Describe the function and untility of the most difficult SAS macro that you have written.

2167


what is the function of catx syntax? : Sas-administrator

1155


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 difference between order and group variable in proc report?

1486


explain what is factor analysis? : Sas-administrator

1174


How are numeric and character missing values represented internally?

1714


Explain substr function?

1165


Name any two sas spawners? : sas-grid-administration

1094


What is a macro routine?

2792


explain the proc in sas? : Sas-administrator

1132


what is the difference between nodup and nodupkey options? : Sas programming

1272


What is the difference between SAS functions and procedures?

1186


What is a method to debug and test your SAS program?

1441


Explain what Proc glm does?

1298