Do you prefer Proc Report or Proc Tabulate? Why?
Answer Posted / balanarasimhudu
By using TABULATE procedure, we can get quick descriptive statistics on data, but it does not meet the typical needs of generating clinical trial tables, some reasons.
 It does not provide p-values beyond a simple t-test.
 It does not present “n (%)” in a desired format.
 Variable labels are not clearly differentiated from the summary statistics labels.
 “Page X of N” pagination is not available.
 Missing values are handled in an “all or nothing” way, so if you exclude missing
values for one variable, you end up excluding all data for that record for the other
variables in the summary.
 It does not place population counts in the column heading.
The REPORT procedure was designed as a flexible report writing tool that combines features of the PRINT, MEANS, and TABULATE procedures along with “PUT” capabilities commonly used in the DATA step. so, I prefer to use proc report until I have cross tabulation tables, because, it gives me so many options to modify the look up of my table,(Ex: width option, by this we can change the width of each column in table like this so many options, statements we can use in proc report).
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
do you need to know if there are any missing values? : Sas programming
Explain bmdp procedure?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
describe about physical data integration? : Sas-di
What is the difference between match merge and one to one merge?
How are numeric and character missing values represented internally?
How do you control the number of observations and/or variables read or written?
If money were no object, what would you like to do?
How can sas program be validated?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
what are the considerations when picking a SAS/STAT procedure?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
what is SAS OPTIMIZATION?
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
What do the PUT and INPUT functions do?