What is Tabulate.?Why we use it.? Which type of output we
get from Tabulate.?

Answers were Sorted based on User's Feedback



What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?..

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

What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?..

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

What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?..

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

Post New Answer

More SAS Interview Questions

i have one dataset data l; input name: $ 25; cards; manoj is a good boy to krishna krishna is a god boy to malli malli is good boy to ramana ques: here i want "manoj" observations nubers

3 Answers   SAS,


Are you involved in writing the inferential analysis plan? Tables specifications?

0 Answers   Oracle,


where are dashboard components are created and maintained? : Sas-bi

0 Answers  


One way of creating a new variable in Macros is by % Let....What is the other way..?

5 Answers   TCS,


What is the length assigned to the target variable by the scan function?

0 Answers  






How would you identify a macro variable?

0 Answers  


How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.

1 Answers  


%STPbegin;%STPEND; ERROR: No logical assign for filename _WEBOUT. WARNING: No body file. HTML output will not be created. unable to fix it.plz help

2 Answers  


is QUALCOMM using SAS ?

1 Answers  


what are the different ways of merging two datasets.name atleast 4.

2 Answers  


For what purposes have you used sas macros? : sas-macro

0 Answers  


hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?

6 Answers   Accenture,


Categories