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 |
How to do user inputs and command line arguments in SAS? D&B
what is information maps?
what is the SAS/ACCESS and SAS/CONNECT?
9 Answers Accenture, iFlex, TCS,
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables?
explain what is data set in sas? : Sas-administrator
What are the default statistics that proc means produce?
how to get second highest salary from a employee table and how get a 5th highest salary from a employee table?
We have a string like this "kannafromsalembut" ,from this i want to get only "fromsal" (but one condition with out using substring function)here we can not use scan because in the given string there is no delimeter? so give ans without out using substring ?
What is highest missing value for numeric?
How would you identify a macro variable?
State the difference between INFORMAT and FORMAT ?
how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?