What is Tabulate.?Why we use it.? Which type of output we
get from Tabulate.?
Answers were Sorted based on User's Feedback
Answer / satyanand
PROC TABULATE is a procedure used to display descriptive
statistics in tabular format.
It computes many statistics that are computed by other
procedures, such as MEANS, FREQ, and REPORT.
PROC TABULATE then displays the results of these statistics
in a table format.
TABULATE will produce tables in up to three dimensions and
allows, within each dimension, multiple variables to be
reported one after another hierarchically.
PROC TABULATE has some very nice mechanisms that can be
used to label and format the variables and the statistics
produced.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / sathya kanuri
The use of PROC TABULATE for producing statistical tables, as
an alternative to using PROC REPORT or FILE PRINT.
The techniques presented combine basic TABULATE statements
with DATA steps and other traditional SAS- procedures
(FORMAT,FREQ and UNIVARIATE) to produce report ready output.
PROC TABULATE is shown to be an efficient report writer,
capable of displaying a variety of statistics.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / 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 |
What is the difference between using drop = data set option in data statement and set statement?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
explain about sas business intelligence? : Sas-bi
What is the one statement to set the criteria of data that can be coded in any step?
Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
Name and describe three SAS functions that you have used, if any?
For clinical entire study how many tables will create approx?
Which date function advances a date, time or datetime value by a given interval?
what is sas olap server? : Sas-di
how to know the attributes of first five datasets in a library
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
What was the last computer book you purchased? Why?