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 techniques and/or PROCs do you use for tables?
Are you involved in writing the inferential analysis plan? Tables specfications?
what is the difference between SET and MERGE?
what is sas olap server? : Sas-di
Explain the use of proc print and proc contents?
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance
in data set200 observation how to take 110,150,170 using sql procedure?
There is a river notoriously known for it?s large crocodile population. With ease, how do you safely cross it?
For what purpose would you use the RETAIN statement?
How would you include common or reuse code to be processed along with your statements?
What is the difference between Proc tabulate and Proc print
why only we use SAS? their r many programmin language like SPSS, Oracle... Why SAS?