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

What SAS statements would you code to read an external raw
data file to a DATA step?

Answer Posted / jothi sankar

INFILE statement

and


INPUT statement

Is This Answer Correct ?    33 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are informats in sas? : Sas-administrator

1143


What is Linear Regression?

1220


Describe a time when you were really stuck on a problem and how you solved it?

2678


Approximately what date is represented by the SAS date value of 730?

1269


what is treatment emergent events and treatment emregent adverse event

2446


What do the SAS log messages "numeric values have been converted to character" mean?

1428


Which statement does not perform automatic conversions in comparisons?

1853


how would you create multiple observations from a single observation? : Sas programming

1048


For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration

1056


Difference between informat and format?

1141


Mention the difference between ceil and floor functions in sas?

1207


What is the difference between order and group variable in proc report?

1480


Explain the special input delimiters used in sas programming.

1042


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

2244


How does the internal authentication work in sas? : sas-grid-administration

1167