Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

How do you debug macros?

3 Answers   Accenture,


Describe a time when you were really stuck on a problem and how you solved it?

1 Answers  


How long can a macro variable be? A token? : sas-macro

0 Answers  


in data set200 observation how to take 110,150,170 using sql procedure?

7 Answers   Accenture,


Do you prefer Proc Report or Proc Tabulate? Why?

9 Answers   Oracle,


how does sas handle missing values in functions? : Sas programming

0 Answers  


"What is the difference between proc sort nodup and proc sort nodupkey?"

2 Answers  


Can anyone help to find a statement to get all the predefined formats?

3 Answers   Verinon Technology Solutions,


sas macros

12 Answers   TCS,


what is the function of catx syntax? : Sas-administrator

0 Answers  


if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...

0 Answers   Accenture,


what do the mod and int function do? What do the pad and dim functions do? : Sas programming

0 Answers  


Categories