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

What is the use of the %include statement?

896


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

792


What is maximum number of rows and cols can be handled in SAS?

1074


Can you execute macro within another macro? : sas-macro

740


Explain the main difference between the sas procedures and functions? : Sas-administrator

766


What is SAS? What are the functions does it performs?

946


How do you delete duplicate observations in sas?

803


Have you used macros? For what purpose you have used? : sas-macro

804


Explain the use of proc print and proc contents?

724


name several ways to achieve efficiency in your program? : Sas programming

764


How long can a macro variable be? A token? : sas-macro

931


how many types prompting framework can be broken down to? : Sas-bi

839


What is the use of stop statement?

824


What does the RUN statement do?

1066


explain about sas business intelligence? : Sas-bi

816