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
What is the use of the %include statement?
which date function advances a date, time or datetime value by a given interval? : Sas programming
What is maximum number of rows and cols can be handled in SAS?
Can you execute macro within another macro? : sas-macro
Explain the main difference between the sas procedures and functions? : Sas-administrator
What is SAS? What are the functions does it performs?
How do you delete duplicate observations in sas?
Have you used macros? For what purpose you have used? : sas-macro
Explain the use of proc print and proc contents?
name several ways to achieve efficiency in your program? : Sas programming
How long can a macro variable be? A token? : sas-macro
how many types prompting framework can be broken down to? : Sas-bi
What is the use of stop statement?
What does the RUN statement do?
explain about sas business intelligence? : Sas-bi