CHOOSE ANY ONE OF THE PROCEDURE FOLLOWING TO GENERATE THE
REPORTS? HOW CAN YOU SAY IT IS BETTER THAN THE OTHER?
AND DEFERENCIATE THESE TWO ?
1). REPORT PROCEDURE
2). TABULATE PROCEDURE
Answers were Sorted based on User's Feedback
Answer / kumar.ts
I)Proc report , we can generate report with less cpu
time,and with this we can do tabulation too.
II)proc tabulate takes much cpu time when compare to proc
report.....
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / kiven
I basically prefer Proc report. By using proc report also
you can create a Tabular format report and its pretty
simple.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / reshma
I will go with Proc report. proc report is the best
procedure than any other to customize your reports in
required format as per customers/sponsers need.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raaman
By using Proc Tabulate, we can create only tabular reports.
Whare as By using Proc Report, we can create customized
reports also. Proc Report Consists the following features:
1. Grouping the data
2. Ordering the data
3. Listing the data
4. Creating new variables by using Compute option
5. Labeling, Formating data etc.,
| Is This Answer Correct ? | 0 Yes | 0 No |
what is difference in window SAS & Unix SAS.....how do define working environment in both???
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
what is sas metadata repository? : Sas-bi
What is the one statement to set the criteria of data that can be coded in any step?
Explain the use of proc print and proc contents?
name the scheduler for scheduling job and explain the scheduler? : Sas-di
Did you used proc test? when?
0 Answers Accenture, Quintiles,
Name statements that are recognized at compile time only?
how many types of MERGE?
i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?
How can you limit the variables written to output dataset in data step?
what are some good sas programming practices for processing very large data sets? : Sas programming