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

Code a PROC SORT on a data set containing State, District
and County as the primary variables, along with several
numeric variables?

Answer Posted / sassss

THE PREVIOUS ANSWER IS WRONG; THE SYNTAX OF PROC SORT IS AS
FOLLOWS
PROC SORT DATA=<DNAME>;
BY <VARNAME/S>;
RUN;

HENCE THE CORRECT ANSWER TO THE QUESTION IS:

proc sort data=x;
BY state district county;
run;

Is This Answer Correct ?    14 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

1276


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

2272


What are the difference between sas functions and procedures?

1198


for what purpose would you use the retain statement? : Sas programming

1143


what is sas olap server? : Sas-di

1293


How can sas program be validated?

1072


what type of graphs we will create(for 2+years candidates)?

2356


In ARRAY processing, what does the DIM function do?

1228


Do you need to rearrange the order of the data for the report?

2359


what is metadata? : Sas-bi

1071


Tell e how how dealt with..

2263


What is the basic structure of the SAS base program?

1394


How would you invoke a macro? : sas-macro

1183


What are the scrubbing procedures in sas?

1055


how to remove duplicates using proc sql?

1197