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 is Tabulate.?Why we use it.? Which type of output we
get from Tabulate.?

Answer Posted / sivakumar sekar

The process of arranging data oderly in form of rows n
columns is knwn as tabulation. rows r horizontal
arangments, columns r vertical arngmnts


Example Using PROC TABULATE

To produce exactly what your boss wants, use the following
code:

PROC TABULATE;
CLASS GENDER;
VAR AGE INCOME EDUC;
TABLE (AGE INCOME EDUC)*MEAN, GENDER ALL;
RUN;
------------------------------------------------------------
Example without Using PROC TABULATE

PROC MEANS;
VAR AGE INCOME EDUC;
RUN;

PROC MEANS;
BY GENDER;
VAR AGE INCOME EDUC;
RUN;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

2167


hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?

2156


Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?

2451


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

1104


What is the difference between the proc sql and data step?

1223


Mention the validation tools used in SAS?

1230


hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?

2108


for whom is sas data integration studio designed? : Sas-di

1061


What are types of transport files?

8085


Did you used proc test? when?

2088


What is maximum storage capability of SAS?

1486


What function CATX syntax does?

1258


how does sas handle missing values in sort order? : Sas programming

981


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

1348


what is program data vector? : Sas-administrator

1126