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

What is substr function?

1235


Which date function advances a date, time or datetime value by a given interval?

1190


what are informats in sas? : Sas-administrator

1138


How would you identify a macro variable? : sas-macro

1059


what versions of sas have you used (on which platforms)? : Sas programming

1125


Explain the difference between informat and format with an example.

1214


What is PROC in SAS?

1098


which date function advances a date, time or datetime value by a given interval? : Sas programming

1092


how are numeric and character missing values represented internally? : Sas programming

1191


Name types of category in which SAS Informats are placed?

1193


Difference between informat and format?

1134


Give some examples where proc report’s defaults are different than proc print’s defaults?

1124


Explain by-group processing?

1035


Explain the use of proc print and proc contents?

1005


i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;

2548