what are the differences between proc report and proc
tabulate?
Answers were Sorted based on User's Feedback
Answer / sandhya
Generally, PROC TABULATE takes a lot of memory space, which
slows down the perfomance. If we are working in one of the
many client machine with one common server, it is suggested
that we use PROC REPORT. PROC TABULATE is an effective
reporting procedure for a large dataset.
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / ravi
Proc Report is used for listing output and ODS destinations
Proc tabulate is an alternative to using Proc report or File Print. Proc Tabulate summarizes value for all observation in a data set and prints the summaries in a table format.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / kumaraswamy maduri
Proc Report is used to create a customized output from
existing data.
Proc tabulate can even calculate statistics and prints the
data in tabular representation.
The basic difference is proc tabulate can calculate using
few statistics but proc report doesn't. Proc report has to
be used when you want to customize the report.
| Is This Answer Correct ? | 2 Yes | 2 No |
Does anybody has lastest SAS certification dumps,if anybody has please mail me at akshara_SAS@ymail.com Thanks Akshara
what is OLAP?
how can u join the two tables without using proc sql Joins and nested queries ?
How many missing values are available? When might you use them?
What is SAS? What are the functions does it performs?
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
Name statements that are execution only.
What is the pound sign used for the DATA _NULL_?
what is business intelligence? : Sas-bi
Give some examples where proc report’s defaults are same as proc print’s defaults?
Explain substr function?
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.