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 are the difference between ceil and floor functions in sas?
What function CATX syntax does?
What is the good sas programming practices for processing large data sets?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
describe about physical data integration? : Sas-di
Explain the difference between nodup and nodupkey options?
To what type of programms have you used scratch macros?
Explain input and put function?
What is the maximum length of the macro variable? : sas-macro
What would you change about your job?
What do the SAS log messages "numeric values have been converted to character" mean?
What is the purpose of trailing @ and @@? How do you use them?
Explain translate function?
How to include or exclude specific variables in a data set?
Explain the purpose of retain statement.