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 |
what is the difference btw proc means and proc univariate?
Describe the function and untility of the most difficult SAS macro that you have written.
We want to merge file A and B. File A has variable age, file B provide birthdate. How to merge the data according to age in file B
How could i automate the code in the scenario:Every month one new data set will be created for that perticular month transaction list.Now i would like to update the data in the source table by appending every month data automatically. jan---set jan; feb---set jan feb; mar---set jan mar;
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
I Here clinical SAS training by Ramesh Azmeera is good. Is it confirm ?
what are the component of range? : Sas-bi
How to merge the data using merge statement and proc format? Is the result is same ?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
What is the purpose of trailing @ and @@? How do you use them?
Tell different ways to create Macrovarible?
3 Answers Accenture, PharmaNet i3,
What are the prime responsibilities of data integration administrator? : Sas-di