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 |
Differentiate input and infile.
how can you create zero observation dataset? : Sas programming
Code the MEANS to produce output to be used later.
Describe the ways in which you can create macro variables? : sas-macro
How we can call macros with in data step? : sas-macro
Name and describe three SAS functions that you have used, if any?
1.How to draw pivot tables in Excel by using SAS and in which version we can use VB script for to draw pivot tables in Excel? Answer with example data. 2.What are the advantages of _NULL_ in Data steps? Can we use _NULL_ in Proc steps also? 3. How to call the macro variable into Data Steps? 4. Can we draw pivot tables in Excel using Proc SQL? Please post answers for the above questions with suitable examples, and how to use VB script for Excel using SAS.
How do you generate random samples?
for whom is sas data integration studio designed? : Sas-di
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn?t have a value?
What is substr function?
how will you locate the sas platform applications? : Sas-bi